[
https://jira.jboss.org/jira/browse/JBPM-2347?page=com.atlassian.jira.plug...
]
Joram Barrez commented on JBPM-2347:
------------------------------------
If you use the jbpm-pvm dependency, this is indeed the case. The snapshot repo only has
1.0.0.SNAPSHOT.
The IDM version is actually set in the root pom by the 'jboss.identity.version'
property, and it is set to 1.0.0.Alpha8 there.
But this doesnt seem to propagate to the submodules.
Deferred to 4.1 due to prioritization requirements. For the moment it is advised to use
the workaround suggested by Johan.
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
Priority: Minor
Fix For: jBPM 4.1
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