jx-java-client
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>io.jenkins-x.client</groupId>
<artifactId>jx-java-client</artifactId>
<version>1.0.4</version>
</dependency><?xml version="1.0" encoding="UTF-8"?>
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.sonatype.oss</groupId>
<artifactId>oss-parent</artifactId>
<version>9</version>
</parent>
<groupId>io.jenkins-x.client</groupId>
<artifactId>jx-java-client</artifactId>
<version>1.0.4</version>
<name>jx-java-client</name>
<url>https://jenkins-x.io/</url>
<inceptionYear>2018</inceptionYear>
<organization>
<name>Jenkins X Community</name>
<url>https://jenkins-x.io/</url>
</organization>
<licenses>
<license>
<name>Apache License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
<distribution>repo</distribution>
</license>
</licenses>
<prerequisites>
<maven>3.2.1</maven>
</prerequisites>
<!-- including A developer as it's required by the maven poms going into central -->
<developers>
<developer>
<id>geeks</id>
<name>Jenkins X Development Team</name>
<email>jenksindev@googlegroups.com</email>
<organization>jenkins</organization>
<organizationUrl>http://jenkins.io/</organizationUrl>
</developer>
</developers>
<scm>
<connection>scm:git:git@github.com:jenkins-x/jx-java-client.git</connection>
<developerConnection>scm:git:git@github.com:jenkins-x/jx-java-client.git</developerConnection>
<url>http://github.com/jenkins-x/jx-java-client</url>
<tag>jx-java-client-1.0.1</tag>
</scm>
<properties>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
<kubernetes-client.version>3.1.12</kubernetes-client.version>
<assertj.core.version>2.4.1</assertj.core.version>
<jackson.version>2.9.1</jackson.version>
<junit.version>4.12</junit.version>
<maven.version>3.5.0</maven.version>
<resolverVersion>1.1.0</resolverVersion>
<slf4j-api.version>1.7.25</slf4j-api.version>
<slf4j-log4j12.version>1.7.21</slf4j-log4j12.version>
<junit.version>4.12</junit.version>
<!-- maven plugins -->
<buildnumber.plugin.version>1.3</buildnumber.plugin.version>
<docker.maven.plugin.version>0.13.8</docker.maven.plugin.version>
<exec-maven-plugin.version>1.2.1</exec-maven-plugin.version>
<maven.enforcer.plugin.version>1.4</maven.enforcer.plugin.version>
<maven.jar.plugin.version>2.6</maven.jar.plugin.version>
<maven.javadoc.plugin.version>2.10.3</maven.javadoc.plugin.version>
<maven.failsafe.plugin.version>2.19</maven.failsafe.plugin.version>
<maven.require.version>3.1.1</maven.require.version>
<maven.surefire.plugin.version>2.17</maven.surefire.plugin.version>
<maven.plugin.plugin.version>3.4</maven.plugin.plugin.version>
</properties>
<distributionManagement>
<repository>
<id>oss-sonatype-staging</id>
<name>Sonatype Staging Repository</name>
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2</url>
</repository>
<snapshotRepository>
<id>oss-sonatype-snapshots</id>
<name>OSS Sonatype Nexus Snapshots</name>
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
</snapshotRepository>
</distributionManagement>
<dependencies>
<dependency>
<groupId>io.fabric8</groupId>
<artifactId>kubernetes-client</artifactId>
<version>${kubernetes-client.version}</version>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>${junit.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.assertj</groupId>
<artifactId>assertj-core</artifactId>
<version>${assertj.core.version}</version>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<defaultGoal>clean install</defaultGoal>
</build>
<profiles>
<profile>
<id>release</id>
<properties>
<jx-java-client.version>${project.version}</jx-java-client.version>
</properties>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-enforcer-plugin</artifactId>
<version>1.3.1</version>
<executions>
<execution>
<id>enforce-no-snapshots</id>
<goals>
<goal>enforce</goal>
</goals>
<configuration>
<rules>
<requireReleaseDeps>
<message>No Snapshots Allowed!</message>
</requireReleaseDeps>
</rules>
<fail>true</fail>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.10.3</version>
<configuration>
<additionalparam>${javadoc.opts}</additionalparam>
</configuration>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>2.4</version>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
<profile>
<id>doclint-java8-disable</id>
<activation>
<jdk>[1.8,)</jdk>
</activation>
<properties>
<javadoc.opts>-Xdoclint:none</javadoc.opts>
</properties>
</profile>
</profiles>
</project>