[
https://jira.jboss.org/jira/browse/JBPM-2347?page=com.atlassian.jira.plug...
]
Joram Barrez resolved JBPM-2347.
--------------------------------
Fix Version/s: (was: jBPM 4.1)
Resolution: Cannot Reproduce Bug
Tried with latest 4.0 release:
<dependencies>
<dependency>
<groupId>org.jbpm.jbpm4</groupId>
<artifactId>jbpm-pvm</artifactId>
<version>4.0</version>
</dependency>
</dependencies>
<repositories>
<repository>
<id>jboss</id>
<
url>http://repository.jboss.com/maven2</url>
</repository>
</repositories>
mvn dependency:tree shows that the latest version (1.0.0.Beta1) is used:
[INFO] \- org.jbpm.jbpm4:jbpm-pvm:jar:4.0:compile
[INFO] +- org.jbpm.jbpm4:jbpm-api:jar:4.0:compile
[INFO] | \- jboss:jboss-j2ee:jar:4.2.2.GA:compile
[INFO] +- org.jbpm.jbpm4:jbpm-log:jar:4.0:compile
[INFO] +- org.jbpm.jbpm4:jbpm-test-base:jar:4.0:compile
[INFO] | +- junit:junit:jar:3.8.1:compile
[INFO] | \- org.hibernate:hibernate-core:jar:3.3.1.GA:compile
[INFO] | +- antlr:antlr:jar:2.7.6:compile
[INFO] | \- commons-collections:commons-collections:jar:3.1:compile
[INFO] +- org.apache.ant:ant:jar:1.7.0:compile
[INFO] | \- org.apache.ant:ant-launcher:jar:1.7.0:compile
[INFO] +- log4j:log4j:jar:1.2.14:compile
[INFO] +- juel:juel:jar:2.1.0:compile
[INFO] +- juel:juel-impl:jar:2.1.0:compile
[INFO] +- juel:juel-engine:jar:2.1.0:compile
[INFO] +- org.slf4j:slf4j-api:jar:1.5.2:compile
[INFO] +- org.slf4j:slf4j-jdk14:jar:1.5.2:compile
[INFO] +- org.jboss.identity.idm:idm-core:jar:1.0.0.Beta1:compile
[INFO] | +- org.jboss.identity.idm:idm-common:jar:1.0.0.Beta1:compile
[INFO] | +- org.jboss.identity.idm:idm-api:jar:1.0.0.Beta1:compile
[INFO] | +- org.jboss.identity.idm:idm-spi:jar:1.0.0.Beta1:compile
[INFO] | \- com.sun.xml.bind:jaxb-impl:jar:2.1.8:compile
[INFO] | \- javax.xml.bind:jaxb-api:jar:2.1:compile
[INFO] | \- javax.xml.stream:stax-api:jar:1.0-2:compile
[INFO] +- org.jboss.identity.idm:idm-hibernate:jar:1.0.0.Beta1:compile
[INFO] | +- javassist:javassist:jar:3.4.GA:compile
[INFO] | +- org.hibernate:hibernate-cglib-repack:jar:2.1_3:compile
[INFO] | \- org.slf4j:slf4j-log4j12:jar:1.5.2:compile
[INFO] +- org.hibernate:hibernate-entitymanager:jar:3.4.0.GA:compile
[INFO] | +- org.hibernate:ejb3-persistence:jar:1.0.2.GA:compile
[INFO] | +- org.hibernate:hibernate-commons-annotations:jar:3.1.0.GA:compile
[INFO] | +- org.hibernate:hibernate-annotations:jar:3.4.0.GA:compile
[INFO] | +- dom4j:dom4j:jar:1.6.1:compile
[INFO] | | \- xml-apis:xml-apis:jar:1.0.b2:compile
[INFO] | \- javax.transaction:jta:jar:1.1:compile
[INFO] +- org.livetribe:livetribe-jsr223:jar:2.0.5:compile
[INFO] \- javax.mail:mail:jar:1.4.1:compile
[INFO] \- javax.activation:activation:jar:1.1.1:compile
Transitive dependency pointing to snapshot repository
-----------------------------------------------------
Key: JBPM-2347
URL:
https://jira.jboss.org/jira/browse/JBPM-2347
Project: JBoss jBPM
Issue Type: Bug
Security Level: Public(Everyone can see)
Components: Runtime Engine
Affects Versions: jBPM 4.0.CR1
Reporter: Johan Kumps
Assignee: Joram Barrez
Priority: Minor
When adding the Jbpm dependancy to a pom.xml like this :
<dependency>
<groupId>org.jbpm.jbpm4</groupId>
<artifactId>jbpm-pvm</artifactId>
<version>4.0.CR1</version>
</dependency>
a transitive dependency is downloaded from the snapshot Jboss repository. It would be
better to use the latest release in the default Jboss repository.
Work around :
<dependency>
<groupId>org.jbpm.jbpm4</groupId>
<artifactId>jbpm-pvm</artifactId>
<version>4.0.CR1</version>
<exclusions>
<exclusion>
<groupId>org.jboss.identity.idm</groupId>
<artifactId>idm-core</artifactId>
</exclusion>
<exclusion>
<groupId>org.jboss.identity.idm</groupId>
<artifactId>idm-hibernate</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.jboss.identity.idm</groupId>
<artifactId>idm-core</artifactId>
<version>1.0.0.Alpha8</version>
</dependency>
<dependency>
<groupId>org.jboss.identity.idm</groupId>
<artifactId>idm-hibernate</artifactId>
<version>1.0.0.Alpha8</version>
</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