|
| 1 | +<?xml version="1.0" encoding="UTF-8"?> |
| 2 | +<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"> |
| 3 | + <modelVersion>4.0.0</modelVersion> |
| 4 | + <groupId>com.nirima</groupId> |
| 5 | + <artifactId>docker-java</artifactId> |
| 6 | + <name>Docker-java jar for jenkins plugin</name> |
| 7 | + <version>0.16.3-SNAPSHOT</version> |
| 8 | + <build> |
| 9 | + <finalName>${project.artifactId}</finalName> |
| 10 | + <plugins> |
| 11 | + <plugin> |
| 12 | + <artifactId>maven-shade-plugin</artifactId> |
| 13 | + <version>2.4.3</version> |
| 14 | + <executions> |
| 15 | + <execution> |
| 16 | + <id>shade</id> |
| 17 | + <phase>package</phase> |
| 18 | + <goals> |
| 19 | + <goal>shade</goal> |
| 20 | + </goals> |
| 21 | + </execution> |
| 22 | + </executions> |
| 23 | + <configuration> |
| 24 | + <createSourcesJar>true</createSourcesJar> |
| 25 | + <artifactSet> |
| 26 | + <includes> |
| 27 | + <include>org.glassfish*:*</include> |
| 28 | + <include>org.apache.httpcomponents*:*</include> |
| 29 | + <include>com.github.docker-java:*</include> |
| 30 | + <include>com.google.guava:*</include> |
| 31 | + </includes> |
| 32 | + </artifactSet> |
| 33 | + <filters> |
| 34 | + <filter> |
| 35 | + <artifact>*:*</artifact> |
| 36 | + <excludes> |
| 37 | + <exclude>org/jvnet/tiger_types/*</exclude> |
| 38 | + </excludes> |
| 39 | + </filter> |
| 40 | + </filters> |
| 41 | + <relocations> |
| 42 | + <relocation> |
| 43 | + <pattern>org.apache.http</pattern> |
| 44 | + <shadedPattern>shaded.org.apache.http</shadedPattern> |
| 45 | + </relocation> |
| 46 | + <relocation> |
| 47 | + <pattern>com.google.common</pattern> |
| 48 | + <shadedPattern>shaded.com.google.common</shadedPattern> |
| 49 | + </relocation> |
| 50 | + </relocations> |
| 51 | + <transformers> |
| 52 | + <transformer /> |
| 53 | + </transformers> |
| 54 | + </configuration> |
| 55 | + </plugin> |
| 56 | + </plugins> |
| 57 | + </build> |
| 58 | + <repositories> |
| 59 | + <repository> |
| 60 | + <id>repo.jenkins-ci.org</id> |
| 61 | + <url>http://repo.jenkins-ci.org/public/</url> |
| 62 | + </repository> |
| 63 | + </repositories> |
| 64 | + <pluginRepositories> |
| 65 | + <pluginRepository> |
| 66 | + <id>repo.jenkins-ci.org</id> |
| 67 | + <url>http://repo.jenkins-ci.org/public/</url> |
| 68 | + </pluginRepository> |
| 69 | + </pluginRepositories> |
| 70 | + <dependencies> |
| 71 | + <dependency> |
| 72 | + <groupId>com.fasterxml.jackson.jaxrs</groupId> |
| 73 | + <artifactId>jackson-jaxrs-json-provider</artifactId> |
| 74 | + <version>2.6.4</version> |
| 75 | + <scope>compile</scope> |
| 76 | + </dependency> |
| 77 | + <dependency> |
| 78 | + <groupId>com.kohlschutter.junixsocket</groupId> |
| 79 | + <artifactId>junixsocket-common</artifactId> |
| 80 | + <version>2.0.4</version> |
| 81 | + <scope>compile</scope> |
| 82 | + <exclusions> |
| 83 | + <exclusion> |
| 84 | + <artifactId>log4j</artifactId> |
| 85 | + <groupId>log4j</groupId> |
| 86 | + </exclusion> |
| 87 | + </exclusions> |
| 88 | + </dependency> |
| 89 | + <dependency> |
| 90 | + <groupId>com.kohlschutter.junixsocket</groupId> |
| 91 | + <artifactId>junixsocket-native-common</artifactId> |
| 92 | + <version>2.0.4</version> |
| 93 | + <scope>compile</scope> |
| 94 | + <exclusions> |
| 95 | + <exclusion> |
| 96 | + <artifactId>log4j</artifactId> |
| 97 | + <groupId>log4j</groupId> |
| 98 | + </exclusion> |
| 99 | + </exclusions> |
| 100 | + </dependency> |
| 101 | + <dependency> |
| 102 | + <groupId>org.apache.commons</groupId> |
| 103 | + <artifactId>commons-compress</artifactId> |
| 104 | + <version>1.12</version> |
| 105 | + <scope>compile</scope> |
| 106 | + </dependency> |
| 107 | + <dependency> |
| 108 | + <groupId>commons-codec</groupId> |
| 109 | + <artifactId>commons-codec</artifactId> |
| 110 | + <version>1.10</version> |
| 111 | + <scope>compile</scope> |
| 112 | + </dependency> |
| 113 | + <dependency> |
| 114 | + <groupId>commons-lang</groupId> |
| 115 | + <artifactId>commons-lang</artifactId> |
| 116 | + <version>2.6</version> |
| 117 | + <scope>compile</scope> |
| 118 | + </dependency> |
| 119 | + <dependency> |
| 120 | + <groupId>commons-io</groupId> |
| 121 | + <artifactId>commons-io</artifactId> |
| 122 | + <version>2.5</version> |
| 123 | + <scope>compile</scope> |
| 124 | + </dependency> |
| 125 | + <dependency> |
| 126 | + <groupId>org.slf4j</groupId> |
| 127 | + <artifactId>slf4j-api</artifactId> |
| 128 | + <version>1.7.21</version> |
| 129 | + <scope>compile</scope> |
| 130 | + </dependency> |
| 131 | + <dependency> |
| 132 | + <groupId>org.slf4j</groupId> |
| 133 | + <artifactId>jcl-over-slf4j</artifactId> |
| 134 | + <version>1.7.21</version> |
| 135 | + <scope>compile</scope> |
| 136 | + </dependency> |
| 137 | + <dependency> |
| 138 | + <groupId>javax.ws.rs</groupId> |
| 139 | + <artifactId>javax.ws.rs-api</artifactId> |
| 140 | + <version>2.0</version> |
| 141 | + <scope>compile</scope> |
| 142 | + </dependency> |
| 143 | + <dependency> |
| 144 | + <groupId>javax.annotation</groupId> |
| 145 | + <artifactId>javax.annotation-api</artifactId> |
| 146 | + <version>1.2</version> |
| 147 | + <scope>compile</scope> |
| 148 | + </dependency> |
| 149 | + <dependency> |
| 150 | + <groupId>org.bouncycastle</groupId> |
| 151 | + <artifactId>bcpkix-jdk15on</artifactId> |
| 152 | + <version>1.54</version> |
| 153 | + <scope>compile</scope> |
| 154 | + </dependency> |
| 155 | + <dependency> |
| 156 | + <groupId>com.google.code.findbugs</groupId> |
| 157 | + <artifactId>annotations</artifactId> |
| 158 | + <version>3.0.1</version> |
| 159 | + <scope>provided</scope> |
| 160 | + <exclusions> |
| 161 | + <exclusion> |
| 162 | + <artifactId>jcip-annotations</artifactId> |
| 163 | + <groupId>net.jcip</groupId> |
| 164 | + </exclusion> |
| 165 | + <exclusion> |
| 166 | + <artifactId>jsr305</artifactId> |
| 167 | + <groupId>com.google.code.findbugs</groupId> |
| 168 | + </exclusion> |
| 169 | + </exclusions> |
| 170 | + </dependency> |
| 171 | + <dependency> |
| 172 | + <groupId>io.netty</groupId> |
| 173 | + <artifactId>netty-codec-http</artifactId> |
| 174 | + <version>4.1.3.Final</version> |
| 175 | + <scope>compile</scope> |
| 176 | + </dependency> |
| 177 | + <dependency> |
| 178 | + <groupId>io.netty</groupId> |
| 179 | + <artifactId>netty-handler</artifactId> |
| 180 | + <version>4.1.3.Final</version> |
| 181 | + <scope>compile</scope> |
| 182 | + </dependency> |
| 183 | + <dependency> |
| 184 | + <groupId>io.netty</groupId> |
| 185 | + <artifactId>netty-handler-proxy</artifactId> |
| 186 | + <version>4.1.3.Final</version> |
| 187 | + <scope>compile</scope> |
| 188 | + </dependency> |
| 189 | + <dependency> |
| 190 | + <groupId>io.netty</groupId> |
| 191 | + <artifactId>netty-transport-native-epoll</artifactId> |
| 192 | + <version>4.1.3.Final</version> |
| 193 | + <classifier>linux-x86_64</classifier> |
| 194 | + <scope>compile</scope> |
| 195 | + </dependency> |
| 196 | + </dependencies> |
| 197 | + <distributionManagement> |
| 198 | + <repository> |
| 199 | + <uniqueVersion>false</uniqueVersion> |
| 200 | + <id>maven.jenkins-ci.org</id> |
| 201 | + <url>https://repo.jenkins-ci.org/releases</url> |
| 202 | + </repository> |
| 203 | + <snapshotRepository> |
| 204 | + <id>maven.jenkins-ci.org</id> |
| 205 | + <url>https://repo.jenkins-ci.org/snapshots/</url> |
| 206 | + </snapshotRepository> |
| 207 | + </distributionManagement> |
| 208 | + <properties> |
| 209 | + <bouncycastle.version>1.54</bouncycastle.version> |
| 210 | + <jdk.source>1.7</jdk.source> |
| 211 | + <commons-compress.version>1.12</commons-compress.version> |
| 212 | + <maven-compiler-plugin.version>3.5.1</maven-compiler-plugin.version> |
| 213 | + <slf4j-api.version>1.7.21</slf4j-api.version> |
| 214 | + <commons-io.version>2.5</commons-io.version> |
| 215 | + <mockito.version>1.10.19</mockito.version> |
| 216 | + <testng.version>6.9.10</testng.version> |
| 217 | + <hamcrest.library.version>1.3</hamcrest.library.version> |
| 218 | + <lambdaj.version>2.3.3</lambdaj.version> |
| 219 | + <hamcrest.jpa-matchers>1.8</hamcrest.jpa-matchers> |
| 220 | + <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
| 221 | + <docker-java.version>3.0.6</docker-java.version> |
| 222 | + <maven.compiler.source>1.7</maven.compiler.source> |
| 223 | + <jdk.target>1.7</jdk.target> |
| 224 | + <netty.version>4.1.3.Final</netty.version> |
| 225 | + <httpclient.version>4.5</httpclient.version> |
| 226 | + <jdk.debug>true</jdk.debug> |
| 227 | + <unix-socket-factory.version>2015-01-27T15-02-14</unix-socket-factory.version> |
| 228 | + <logback.version>1.1.7</logback.version> |
| 229 | + <guava.version>19.0</guava.version> |
| 230 | + <maven-surefire-plugin.version>2.19.1</maven-surefire-plugin.version> |
| 231 | + <maven.compiler.target>1.7</maven.compiler.target> |
| 232 | + <maven-jar-plugin.version>3.0.2</maven-jar-plugin.version> |
| 233 | + <maven-release-plugin.version>2.5.3</maven-release-plugin.version> |
| 234 | + <maven-failsafe-plugin.version>2.19.1</maven-failsafe-plugin.version> |
| 235 | + <jdk.optimize>false</jdk.optimize> |
| 236 | + <jackson-jaxrs.version>2.6.4</jackson-jaxrs.version> |
| 237 | + <commons-codec.version>1.10</commons-codec.version> |
| 238 | + <jersey.version>2.23.1</jersey.version> |
| 239 | + <maven-antrun-plugin.version>1.8</maven-antrun-plugin.version> |
| 240 | + <commons-lang.version>2.6</commons-lang.version> |
| 241 | + </properties> |
| 242 | +</project> |
| 243 | + |
0 commit comments