Skip to content

Commit f625b85

Browse files
author
Marcus Linke
committed
Fix issue #94
1 parent d94b93f commit f625b85

1 file changed

Lines changed: 58 additions & 43 deletions

File tree

pom.xml

Lines changed: 58 additions & 43 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
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">
23
<modelVersion>4.0.0</modelVersion>
34

45
<parent>
@@ -56,7 +57,7 @@
5657

5758
<httpclient.version>4.2.5</httpclient.version>
5859
<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>
6061
<commons-io.version>2.3</commons-io.version>
6162
<commons-lang.version>2.6</commons-lang.version>
6263
<slf4j-api.version>1.7.5</slf4j-api.version>
@@ -88,11 +89,11 @@
8889
<artifactId>jackson-jaxrs-json-provider</artifactId>
8990
<version>${jackson-jaxrs.version}</version>
9091
</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> -->
9697
<dependency>
9798
<groupId>org.glassfish.jersey.core</groupId>
9899
<artifactId>jersey-client</artifactId>
@@ -104,11 +105,11 @@
104105
<artifactId>commons-compress</artifactId>
105106
<version>${commons-compress.version}</version>
106107
</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>
112113
<dependency>
113114
<groupId>commons-lang</groupId>
114115
<artifactId>commons-lang</artifactId>
@@ -139,16 +140,16 @@
139140
</dependency>
140141

141142
<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>
152153

153154
<!-- /// Test /////////////////////////// -->
154155
<dependency>
@@ -300,6 +301,32 @@
300301
</execution>
301302
</executions>
302303
</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>
303330
</plugins>
304331
</pluginManagement>
305332
<plugins>
@@ -349,12 +376,20 @@
349376
<configuration>
350377
<groups>integration</groups>
351378
<includes>
352-
<include>**/*Test.java</include>
379+
<include>**/*Test.java</include>
353380
</includes>
354381
</configuration>
355382
</execution>
356383
</executions>
357384
</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>
358393
</plugins>
359394
</build>
360395

@@ -376,33 +411,13 @@
376411
</execution>
377412
</executions>
378413
</plugin>
379-
380414
<plugin>
381415
<groupId>org.apache.maven.plugins</groupId>
382416
<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>
392417
</plugin>
393-
394418
<plugin>
395419
<groupId>org.apache.maven.plugins</groupId>
396420
<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>
406421
</plugin>
407422
</plugins>
408423
</build>

0 commit comments

Comments
 (0)