Consider this:
#1 you put the container integration in AS trunk
#2 you 'mvn deploy' jbossws-jboss-5.0.0-SNAPSHOT from AS trunk
#3 CR1 gets released
#4 you 'mvn deploy' jbossws-jboss-5.0.0.CR1 from AS trunk
#5 you work on jbossws-3.0.3 and need to update jbossws-jboss-5.0.0.CR1
What now?
Heiko's naming scheme does not work because you cannot have a dependency on the same
artifact with different versions
| <dependency>
| <groupId>org.jboss.ws</groupId>
| <artifactId>jbossws-jboss</artifactId>
| <version>5.0.0.Beta4</version>
| </dependency>
| <dependency>
| <groupId>org.jboss.ws</groupId>
| <artifactId>jbossws-jboss</artifactId>
| <version>5.0.0.CR1</version>
| </dependency>
|
| |
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4157913#...
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&a...