|
1 | | -<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/xsd/maven-4.0.0.xsd"> |
| 1 | +<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 2 | + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
2 | 3 | <modelVersion>4.0.0</modelVersion> |
3 | 4 |
|
4 | 5 | <parent> |
|
56 | 57 |
|
57 | 58 | <httpclient.version>4.2.5</httpclient.version> |
58 | 59 | <commons-compress.version>1.5</commons-compress.version> |
59 | | - <commons-codec.version>1.8</commons-codec.version> |
| 60 | + <commons-codec.version>1.8</commons-codec.version> |
60 | 61 | <commons-io.version>2.3</commons-io.version> |
61 | 62 | <commons-lang.version>2.6</commons-lang.version> |
62 | 63 | <slf4j-api.version>1.7.5</slf4j-api.version> |
|
88 | 89 | <artifactId>jackson-jaxrs-json-provider</artifactId> |
89 | 90 | <version>${jackson-jaxrs.version}</version> |
90 | 91 | </dependency> |
91 | | -<!-- <dependency> --> |
92 | | -<!-- <groupId>org.glassfish.jersey.connectors</groupId> --> |
93 | | -<!-- <artifactId>jersey-jetty-connector</artifactId> --> |
94 | | -<!-- <version>${jersey.version}</version> --> |
95 | | -<!-- </dependency> --> |
| 92 | + <!-- <dependency> --> |
| 93 | + <!-- <groupId>org.glassfish.jersey.connectors</groupId> --> |
| 94 | + <!-- <artifactId>jersey-jetty-connector</artifactId> --> |
| 95 | + <!-- <version>${jersey.version}</version> --> |
| 96 | + <!-- </dependency> --> |
96 | 97 | <dependency> |
97 | 98 | <groupId>org.glassfish.jersey.core</groupId> |
98 | 99 | <artifactId>jersey-client</artifactId> |
|
104 | 105 | <artifactId>commons-compress</artifactId> |
105 | 106 | <version>${commons-compress.version}</version> |
106 | 107 | </dependency> |
107 | | - <dependency> |
108 | | - <groupId>commons-codec</groupId> |
109 | | - <artifactId>commons-codec</artifactId> |
110 | | - <version>${commons-codec.version}</version> |
111 | | - </dependency> |
| 108 | + <dependency> |
| 109 | + <groupId>commons-codec</groupId> |
| 110 | + <artifactId>commons-codec</artifactId> |
| 111 | + <version>${commons-codec.version}</version> |
| 112 | + </dependency> |
112 | 113 | <dependency> |
113 | 114 | <groupId>commons-lang</groupId> |
114 | 115 | <artifactId>commons-lang</artifactId> |
|
139 | 140 | </dependency> |
140 | 141 |
|
141 | 142 | <dependency> |
142 | | - <groupId>com.google.guava</groupId> |
143 | | - <artifactId>guava</artifactId> |
144 | | - <version>${guava.version}</version> |
145 | | - </dependency> |
146 | | - |
147 | | - <dependency> |
148 | | - <groupId>org.bouncycastle</groupId> |
149 | | - <artifactId>bcpkix-jdk15on</artifactId> |
150 | | - <version>${bouncycastle.version}</version> |
151 | | - </dependency> |
| 143 | + <groupId>com.google.guava</groupId> |
| 144 | + <artifactId>guava</artifactId> |
| 145 | + <version>${guava.version}</version> |
| 146 | + </dependency> |
| 147 | + |
| 148 | + <dependency> |
| 149 | + <groupId>org.bouncycastle</groupId> |
| 150 | + <artifactId>bcpkix-jdk15on</artifactId> |
| 151 | + <version>${bouncycastle.version}</version> |
| 152 | + </dependency> |
152 | 153 |
|
153 | 154 | <!-- /// Test /////////////////////////// --> |
154 | 155 | <dependency> |
|
300 | 301 | </execution> |
301 | 302 | </executions> |
302 | 303 | </plugin> |
| 304 | + <plugin> |
| 305 | + <groupId>org.apache.maven.plugins</groupId> |
| 306 | + <artifactId>maven-source-plugin</artifactId> |
| 307 | + <version>2.2.1</version> |
| 308 | + <executions> |
| 309 | + <execution> |
| 310 | + <id>attach-sources</id> |
| 311 | + <goals> |
| 312 | + <goal>jar-no-fork</goal> |
| 313 | + </goals> |
| 314 | + </execution> |
| 315 | + </executions> |
| 316 | + </plugin> |
| 317 | + <plugin> |
| 318 | + <groupId>org.apache.maven.plugins</groupId> |
| 319 | + <artifactId>maven-javadoc-plugin</artifactId> |
| 320 | + <version>2.9.1</version> |
| 321 | + <executions> |
| 322 | + <execution> |
| 323 | + <id>attach-javadocs</id> |
| 324 | + <goals> |
| 325 | + <goal>jar</goal> |
| 326 | + </goals> |
| 327 | + </execution> |
| 328 | + </executions> |
| 329 | + </plugin> |
303 | 330 | </plugins> |
304 | 331 | </pluginManagement> |
305 | 332 | <plugins> |
|
349 | 376 | <configuration> |
350 | 377 | <groups>integration</groups> |
351 | 378 | <includes> |
352 | | - <include>**/*Test.java</include> |
| 379 | + <include>**/*Test.java</include> |
353 | 380 | </includes> |
354 | 381 | </configuration> |
355 | 382 | </execution> |
356 | 383 | </executions> |
357 | 384 | </plugin> |
| 385 | + <plugin> |
| 386 | + <groupId>org.apache.maven.plugins</groupId> |
| 387 | + <artifactId>maven-source-plugin</artifactId> |
| 388 | + </plugin> |
| 389 | + <plugin> |
| 390 | + <groupId>org.apache.maven.plugins</groupId> |
| 391 | + <artifactId>maven-javadoc-plugin</artifactId> |
| 392 | + </plugin> |
358 | 393 | </plugins> |
359 | 394 | </build> |
360 | 395 |
|
|
376 | 411 | </execution> |
377 | 412 | </executions> |
378 | 413 | </plugin> |
379 | | - |
380 | 414 | <plugin> |
381 | 415 | <groupId>org.apache.maven.plugins</groupId> |
382 | 416 | <artifactId>maven-source-plugin</artifactId> |
383 | | - <version>2.2.1</version> |
384 | | - <executions> |
385 | | - <execution> |
386 | | - <id>attach-sources</id> |
387 | | - <goals> |
388 | | - <goal>jar-no-fork</goal> |
389 | | - </goals> |
390 | | - </execution> |
391 | | - </executions> |
392 | 417 | </plugin> |
393 | | - |
394 | 418 | <plugin> |
395 | 419 | <groupId>org.apache.maven.plugins</groupId> |
396 | 420 | <artifactId>maven-javadoc-plugin</artifactId> |
397 | | - <version>2.9.1</version> |
398 | | - <executions> |
399 | | - <execution> |
400 | | - <id>attach-javadocs</id> |
401 | | - <goals> |
402 | | - <goal>jar</goal> |
403 | | - </goals> |
404 | | - </execution> |
405 | | - </executions> |
406 | 421 | </plugin> |
407 | 422 | </plugins> |
408 | 423 | </build> |
|
0 commit comments