HHH-4548 - Alter poms to not use javax.* artifacts under Sun proprietary license
git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@17935 1b8cb986-b30d-0410-93ca-fae66ebed9b2
This commit is contained in:
parent
bcb9f8a302
commit
007f7817b4
18
core/pom.xml
18
core/pom.xml
|
@ -44,20 +44,14 @@
|
|||
|
||||
<dependency>
|
||||
<!-- YUCK, YUCK, YUCK!!!! -->
|
||||
<groupId>javax.transaction</groupId>
|
||||
<artifactId>jta</artifactId>
|
||||
<version>1.1</version>
|
||||
<groupId>org.jboss.javaee</groupId>
|
||||
<artifactId>jboss-transaction-api</artifactId>
|
||||
<version>1.0.1.GA</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>javax.security</groupId>
|
||||
<artifactId>jaas</artifactId>
|
||||
<version>1.0.01</version>
|
||||
<scope>provided</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>javax.security</groupId>
|
||||
<artifactId>jacc</artifactId>
|
||||
<version>1.0</version>
|
||||
<groupId>org.jboss.javaee</groupId>
|
||||
<artifactId>jboss-jacc-api</artifactId>
|
||||
<version>1.1.0.GA</version>
|
||||
<scope>provided</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
|
|
|
@ -66,6 +66,7 @@
|
|||
|
||||
<dependencySets>
|
||||
<dependencySet>
|
||||
<!-- The normal required dependencySet -->
|
||||
<outputDirectory>lib/required</outputDirectory>
|
||||
<includes>
|
||||
<include>antlr:antlr</include>
|
||||
|
@ -77,11 +78,18 @@
|
|||
<include>javassist:javassist</include>
|
||||
|
||||
<include>org.slf4j:slf4j-api</include>
|
||||
|
||||
<include>javax.transaction:jta</include>
|
||||
</includes>
|
||||
</dependencySet>
|
||||
|
||||
<dependencySet>
|
||||
<!-- The required dependencySet for jta so I can rename it... -->
|
||||
<outputDirectory>lib/required</outputDirectory>
|
||||
<includes>
|
||||
<include>org.jboss.javaee:jboss-transaction-api</include>
|
||||
</includes>
|
||||
<outputFileNameMapping>jta-1.1.jar</outputFileNameMapping>
|
||||
</dependencySet>
|
||||
|
||||
<dependencySet>
|
||||
<outputDirectory>lib/optional/c3p0</outputDirectory>
|
||||
<includes>
|
||||
|
|
Loading…
Reference in New Issue