kubernetes-client-with-deps
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.fabric8</groupId> <artifactId>kubernetes-client-with-deps</artifactId> <version>1.3.56</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <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"> <parent> <artifactId>kubernetes-client-project</artifactId> <groupId>io.fabric8</groupId> <version>1.3.56</version> </parent> <modelVersion>4.0.0</modelVersion> <groupId>io.fabric8</groupId> <artifactId>kubernetes-client-with-deps</artifactId> <name>Fabric8 :: Kubernetes :: Java Client with Dependencies</name> <build> <plugins> <plugin> <artifactId>maven-shade-plugin</artifactId> <version>2.4.1</version> <executions> <execution> <phase>package</phase> <goals> <goal>shade</goal> </goals> <configuration> <createSourcesJar>true</createSourcesJar> <artifactSet> <includes> <include>io.fabric8:kubernetes-client</include> <include>com.ning:async-http-client</include> <include>io.netty:netty</include> </includes> </artifactSet> <relocations> <relocation> <pattern>com.ning</pattern> <shadedPattern>io.fabric8.kubernetes.client.internal.com.ning</shadedPattern> </relocation> <relocation> <pattern>org.jboss.netty</pattern> <shadedPattern>io.fabric8.kubernetes.client.internal.org.jboss.netty</shadedPattern> </relocation> </relocations> </configuration> </execution> </executions> <configuration /> </plugin> </plugins> </build> <properties> <javadoc.source.includes>io.fabric8:kubernetes-client</javadoc.source.includes> <javadoc.include.deps>true</javadoc.include.deps> </properties> </project>