Skip to content
Snippets Groups Projects
Commit ffd7a460 authored by Costin Leau's avatar Costin Leau Committed by Mic
Browse files

+ removed optional marker on some dependencies so they get included in the final war

parent a7ae7df3
No related branches found
No related tags found
No related merge requests found
...@@ -105,7 +105,6 @@ ...@@ -105,7 +105,6 @@
<groupId>org.hibernate</groupId> <groupId>org.hibernate</groupId>
<artifactId>com.springsource.org.hibernate</artifactId> <artifactId>com.springsource.org.hibernate</artifactId>
<version>3.3.2.GA</version> <version>3.3.2.GA</version>
<optional>true</optional>
</dependency> </dependency>
<!-- JPA --> <!-- JPA -->
...@@ -113,21 +112,18 @@ ...@@ -113,21 +112,18 @@
<groupId>javax.persistence</groupId> <groupId>javax.persistence</groupId>
<artifactId>com.springsource.javax.persistence</artifactId> <artifactId>com.springsource.javax.persistence</artifactId>
<version>1.0.0</version> <version>1.0.0</version>
<optional>true</optional>
</dependency> </dependency>
<!-- Toplink JPA Provider --> <!-- Toplink JPA Provider -->
<dependency> <dependency>
<groupId>com.oracle.toplink.essentials</groupId> <groupId>com.oracle.toplink.essentials</groupId>
<artifactId>com.springsource.oracle.toplink.essentials</artifactId> <artifactId>com.springsource.oracle.toplink.essentials</artifactId>
<version>2.0.0.b41-beta2</version> <version>2.0.0.b41-beta2</version>
<optional>true</optional>
</dependency> </dependency>
<!-- Hibernate JPA Provider --> <!-- Hibernate JPA Provider -->
<dependency> <dependency>
<groupId>org.hibernate</groupId> <groupId>org.hibernate</groupId>
<artifactId>com.springsource.org.hibernate.ejb</artifactId> <artifactId>com.springsource.org.hibernate.ejb</artifactId>
<version>3.4.0.GA</version> <version>3.4.0.GA</version>
<optional>true</optional>
<exclusions> <exclusions>
<!-- Exclude Commons Logging in favor of SLF4j --> <!-- Exclude Commons Logging in favor of SLF4j -->
<exclusion> <exclusion>
...@@ -140,7 +136,6 @@ ...@@ -140,7 +136,6 @@
<groupId>org.hibernate</groupId> <groupId>org.hibernate</groupId>
<artifactId>com.springsource.org.hibernate.annotations</artifactId> <artifactId>com.springsource.org.hibernate.annotations</artifactId>
<version>3.4.0.GA</version> <version>3.4.0.GA</version>
<optional>true</optional>
<exclusions> <exclusions>
<!-- Exclude Commons Logging in favor of SLF4j --> <!-- Exclude Commons Logging in favor of SLF4j -->
<exclusion> <exclusion>
...@@ -154,7 +149,6 @@ ...@@ -154,7 +149,6 @@
<groupId>org.apache.openjpa</groupId> <groupId>org.apache.openjpa</groupId>
<artifactId>com.springsource.org.apache.openjpa</artifactId> <artifactId>com.springsource.org.apache.openjpa</artifactId>
<version>1.1.0</version> <version>1.1.0</version>
<optional>true</optional>
<exclusions> <exclusions>
<!-- Exclude Commons Logging in favor of SLF4j --> <!-- Exclude Commons Logging in favor of SLF4j -->
<exclusion> <exclusion>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment