Use of proprietary JTA maven artifacts as dependency
----------------------------------------------------
Key: EJBTHREE-1949
URL:
https://jira.jboss.org/jira/browse/EJBTHREE-1949
Project: EJB 3.0
Issue Type: Bug
Components: core
Affects Versions: 1.1.5
Reporter: Karel Piwko
Since proprietary javax artifacts were removed from jboss repository, jboss-ejb3-core:jar
can no longer fetch its transitive dependencies.
Logs:
Missing:
----------
1) javax.transaction:jta:jar:1.0.1B
Try downloading the file manually from:
http://java.sun.com/products/jta
Then, install it using the command:
mvn install:install-file -DgroupId=javax.transaction -DartifactId=jta
-Dversion=1.0.1B -Dpackaging=jar -Dfile=/path/to/file
Alternatively, if you host your own repository you can deploy the file there:
mvn deploy:deploy-file -DgroupId=javax.transaction -DartifactId=jta -Dversion=1.0.1B
-Dpackaging=jar -Dfile=/path/to/file -Durl=[url] -DrepositoryId=[id]
Path to dependency:
1) org.jboss.weld.integration:weld-jboss-int-jboss-ejb:jar:5.2.0-SNAPSHOT
2) org.jboss.ejb3:jboss-ejb3-endpoint-deployer:jar:0.1.3
3) org.jboss.ejb3:jboss-ejb3-core:jar:1.1.5
4) org.hibernate:hibernate:jar:3.2.6.ga
5) javax.transaction:jta:jar:1.0.1B
This breaks a lot of builds. It must be replaced with jboss-transaction-api artifact.
+ <exclusions>
+ <exclusion>
+ <groupId>javax.transaction</groupId>
+ <artifactId>jta</artifactId>
+ </exclusion>
+ </exclusions>
+
+ <dependency>
+ <groupId>org.jboss.javaee</groupId>
+ <artifactId>jboss-transaction-api</artifactId>
+ </dependency>
+
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
https://jira.jboss.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see:
http://www.atlassian.com/software/jira