Skip to content

Commit

Permalink
Merge pull request #884 from garcia-jj/ot-pom-improvements
Browse files Browse the repository at this point in the history
Organizing Maven dependencies
  • Loading branch information
garcia-jj committed Nov 17, 2014
2 parents 414fb6f + a885566 commit 81e5571
Showing 1 changed file with 25 additions and 25 deletions.
50 changes: 25 additions & 25 deletions vraptor-core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -49,23 +49,41 @@
<dependency>
<groupId>com.thoughtworks.paranamer</groupId>
<artifactId>paranamer</artifactId>
<version>2.6</version>
<version>2.7</version>
<exclusions>
<exclusion>
<groupId>org.mockito</groupId>
<artifactId>mockito-all</artifactId>
</exclusion>
</exclusions>
</dependency>
<!-- /mandatory -->


<!-- XML Serialization -->
<dependency>
<groupId>com.thoughtworks.xstream</groupId>
<artifactId>xstream</artifactId>
<version>1.4.7</version>
</dependency>
<!-- /mandatory -->

<!-- [cdi] -->
<!-- JSON Serialization -->
<dependency>
<groupId>com.google.code.gson</groupId>
<artifactId>gson</artifactId>
<version>2.2.4</version>
</dependency>

<!-- fileupload -->
<dependency>
<groupId>commons-fileupload</groupId>
<artifactId>commons-fileupload</artifactId>
<version>1.3.1</version>
<optional>true</optional>
</dependency>


<!-- cdi -->
<dependency>
<groupId>javax.inject</groupId>
<artifactId>javax.inject</artifactId>
Expand Down Expand Up @@ -107,16 +125,8 @@
<artifactId>javax.ejb-api</artifactId>
<version>3.2</version>
</dependency>
<!-- /cdi -->

<!-- [/cdi] -->

<!-- [deserialization] -->
<dependency>
<groupId>com.google.code.gson</groupId>
<artifactId>gson</artifactId>
<version>2.2.4</version>
</dependency>
<!-- [/deserialization] -->

<!-- bean validation -->
<dependency>
Expand All @@ -133,19 +143,6 @@
<scope>provided</scope>
</dependency>

<dependency>
<groupId>javax.annotation</groupId>
<artifactId>jsr250-api</artifactId>
<version>1.0</version>
<optional>true</optional>
</dependency>

<dependency>
<groupId>commons-fileupload</groupId>
<artifactId>commons-fileupload</artifactId>
<version>1.3.1</version>
<optional>true</optional>
</dependency>

<!-- provided by servlet containers -->
<dependency>
Expand All @@ -169,6 +166,7 @@
<scope>provided</scope>
</dependency>


<!-- test libs -->
<dependency>
<groupId>org.slf4j</groupId>
Expand Down Expand Up @@ -235,6 +233,8 @@
<version>2.2</version>
<scope>test</scope>
</dependency>
<!-- /test libs -->

</dependencies>

<build>
Expand Down

0 comments on commit 81e5571

Please sign in to comment.