|
106 | 106 | <failsafe.useSystemClassLoader>true</failsafe.useSystemClassLoader> |
107 | 107 |
|
108 | 108 | <!-- Plugin versioning --> |
109 | | - <build-helper-maven-plugin.version>1.9.1</build-helper-maven-plugin.version> |
| 109 | + <build-helper-maven-plugin.version>1.10</build-helper-maven-plugin.version> |
110 | 110 | <download-maven-plugin.version>1.2.1</download-maven-plugin.version> |
111 | 111 | <maven-clean-plugin.version>3.0.0</maven-clean-plugin.version> |
112 | 112 | <maven-compiler-plugin.version>3.3</maven-compiler-plugin.version> |
113 | 113 | <maven-dependency-plugin.version>2.10</maven-dependency-plugin.version> |
114 | 114 | <maven-deploy-plugin.version>2.8.2</maven-deploy-plugin.version> |
115 | 115 | <maven-ear-plugin.version>2.10.1</maven-ear-plugin.version> |
116 | 116 | <maven-enforcer-plugin.version>1.4.1</maven-enforcer-plugin.version> |
117 | | - <maven-failsafe-plugin.version>2.19</maven-failsafe-plugin.version> |
| 117 | + <maven-failsafe-plugin.version>2.19.1</maven-failsafe-plugin.version> |
118 | 118 | <maven-gpg-plugin.version>1.6</maven-gpg-plugin.version> |
119 | 119 | <maven-install-plugin.version>2.5.2</maven-install-plugin.version> |
120 | 120 | <maven-jar-plugin.version>2.6</maven-jar-plugin.version> |
121 | 121 | <maven-jarsigner-plugin.version>1.4</maven-jarsigner-plugin.version> |
122 | 122 | <maven-javadoc-plugin.version>2.10.3</maven-javadoc-plugin.version> |
| 123 | + <maven-jxr-plugin.version>2.5</maven-jxr-plugin.version> |
123 | 124 | <maven-release-plugin.version>2.5.3</maven-release-plugin.version> |
124 | 125 | <maven-resources-plugin.version>2.7</maven-resources-plugin.version> |
| 126 | + <maven-shade-plugin.version>2.4.2</maven-shade-plugin.version> |
125 | 127 | <maven-source-plugin.version>2.4</maven-source-plugin.version> |
126 | | - <maven-surefire-plugin.version>2.19</maven-surefire-plugin.version> |
| 128 | + <maven-surefire-plugin.version>2.19.1</maven-surefire-plugin.version> |
127 | 129 | <maven-war-plugin.version>2.6</maven-war-plugin.version> |
128 | 130 | <!-- Dependency versions --> |
129 | 131 | <dependency.logback.version>1.1.3</dependency.logback.version> |
130 | 132 | <dependency.slfj.version>1.7.13</dependency.slfj.version> |
131 | | - <dependency.testng.version>6.9.9</dependency.testng.version> |
| 133 | + <dependency.testng.version>6.9.10</dependency.testng.version> |
132 | 134 | </properties> |
133 | 135 |
|
134 | 136 | <dependencies> |
|
254 | 256 | <artifactId>maven-javadoc-plugin</artifactId> |
255 | 257 | <version>${maven-javadoc-plugin.version}</version> |
256 | 258 | </plugin> |
| 259 | + <plugin> |
| 260 | + <groupId>org.apache.maven.plugins</groupId> |
| 261 | + <artifactId>maven-jxr-plugin</artifactId> |
| 262 | + <version>${maven-jxr-plugin.version}</version> |
| 263 | + </plugin> |
257 | 264 | <plugin> |
258 | 265 | <groupId>org.apache.maven.plugins</groupId> |
259 | 266 | <artifactId>maven-release-plugin</artifactId> |
|
270 | 277 | <artifactId>maven-resources-plugin</artifactId> |
271 | 278 | <version>${maven-resources-plugin.version}</version> |
272 | 279 | </plugin> |
| 280 | + <plugin> |
| 281 | + <groupId>org.apache.maven.plugins</groupId> |
| 282 | + <artifactId>maven-shade-plugin</artifactId> |
| 283 | + <version>${maven-shade-plugin.version}</version> |
| 284 | + <!--<configuration> |
| 285 | + <minimizeJar>true</minimizeJar> |
| 286 | + <artifactSet> |
| 287 | + <excludes> |
| 288 | + <exclude>com.google.code.findbugs:jsr305</exclude> |
| 289 | + <exclude>junit:junit</exclude> |
| 290 | + <exclude>org.slf4j:*</exclude> |
| 291 | + <exclude>org.bouncycastle:*</exclude> |
| 292 | + </excludes> |
| 293 | + </artifactSet> |
| 294 | + <relocations> |
| 295 | + <relocation> |
| 296 | + <pattern>com.google</pattern> |
| 297 | + <shadedPattern>com.joyent.manta.com.google</shadedPattern> |
| 298 | + </relocation> |
| 299 | + <relocation> |
| 300 | + <pattern>org.apache</pattern> |
| 301 | + <shadedPattern>com.joyent.manta.org.apache</shadedPattern> |
| 302 | + </relocation> |
| 303 | + <relocation> |
| 304 | + <pattern>com.fasterxml</pattern> |
| 305 | + <shadedPattern>com.joyent.manta.com.fasterxml</shadedPattern> |
| 306 | + </relocation> |
| 307 | + </relocations> |
| 308 | + </configuration> |
| 309 | + <executions> |
| 310 | + <execution> |
| 311 | + <phase>package</phase> |
| 312 | + <goals> |
| 313 | + <goal>shade</goal> |
| 314 | + </goals> |
| 315 | + </execution> |
| 316 | + </executions>--> |
| 317 | + </plugin> |
273 | 318 | <plugin> |
274 | 319 | <groupId>org.apache.maven.plugins</groupId> |
275 | 320 | <artifactId>maven-source-plugin</artifactId> |
|
0 commit comments