cloudbees-api-client-parent
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.cloudbees</groupId>
<artifactId>cloudbees-api-client-parent</artifactId>
<version>1.5.9</version>
</dependency><!--
~ Copyright 2010-2012, CloudBees Inc.
~
~ Licensed under the Apache License, Version 2.0 (the "License");
~ you may not use this file except in compliance with the License.
~ You may obtain a copy of the License at
~
~ http://www.apache.org/licenses/LICENSE-2.0
~
~ Unless required by applicable law or agreed to in writing, software
~ distributed under the License is distributed on an "AS IS" BASIS,
~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
~ See the License for the specific language governing permissions and
~ limitations under the License.
-->
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>com.cloudbees</groupId>
<artifactId>cloudbees-oss-parent</artifactId>
<version>2</version>
</parent>
<artifactId>cloudbees-api-client-parent</artifactId>
<packaging>pom</packaging>
<version>1.5.9</version>
<modules>
<module>cloudbees-api-client</module>
<module>cloudbees-api-client-nodeps</module>
</modules>
<name>cloudbees-api-client-parent</name>
<description>Parent of the CloudBees API Client library for Java</description>
<url>https://github.com/cloudbees/cloudbees-api-client</url>
<inceptionYear>2011</inceptionYear>
<licenses>
<license>
<name>The Apache Software License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
<distribution>repo</distribution>
</license>
</licenses>
<developers>
<developer>
<name>Stephen Connolly</name>
</developer>
<developer>
<name>Spike Washburn</name>
</developer>
<developer>
<name>Fabian Donze</name>
</developer>
<developer>
<name>Michael Neale</name>
</developer>
<developer>
<name>Kohsuke Kawaguchi</name>
</developer>
</developers>
<contributors>
<contributor>
<name>Olivier Lamy</name>
</contributor>
</contributors>
<prerequisites>
<maven>2.2.1</maven>
</prerequisites>
<scm>
<connection>scm:git:git://github.com/cloudbees/cloudbees-api-client.git</connection>
<developerConnection>scm:git:git@github.com:cloudbees/cloudbees-api-client.git</developerConnection>
<url>http://github.com/cloudbees/cloudbees-api-client/tree/master/</url>
<tag>cloudbees-api-client-parent-1.5.9</tag>
</scm>
<issueManagement>
</issueManagement>
<ciManagement>
</ciManagement>
<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>1.5</source>
<target>1.5</target>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<configuration>
<archive>
<manifest>
<mainClass>com.cloudbees.api.BeesClient</mainClass>
<packageName>com.cloudbees.api</packageName>
</manifest>
</archive>
</configuration>
</plugin>
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<configuration>
<descriptorRefs>
<descriptorRef>jar-with-dependencies</descriptorRef>
</descriptorRefs>
<archive>
<manifest>
<mainClass>com.cloudbees.api.BeesClient</mainClass>
<packageName>com.cloudbees.api</packageName>
</manifest>
</archive>
</configuration>
<executions>
<execution>
<id>make-my-jar-with-dependencies</id>
<phase>package</phase>
<goals>
<goal>single</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.8</version>
</plugin>
</plugins>
</pluginManagement>
</build>
</project>