Details
-
Type:
Bug
-
Status:
Open
-
Priority:
Major
-
Resolution: Unresolved
-
Affects Version/s: 2.0-beta-4
-
Fix Version/s: None
-
Component/s: prepare
-
Labels:None
-
Environment:Maven 2.0.4 under windows
-
Testcase included:yes
-
Patch Submitted:Yes
Description
I have a multi module project. When I do release:prepare, the release plugin update the version tag of all my submodules in the dependencyManagement section.
For the same module I have declared two artifacts like this :
<dependency> <groupId>com.bla</groupId> <artifactId>blabla</artifactId> <version>1.0-SNAPSHOT</version> <type>test-jar</type> <scope>test</scope> </dependency> <dependency> <groupId>com.bla</groupId> <artifactId>blabla</artifactId> <version>1.0-SNAPSHOT</version> </dependency>
In this case, the release plugin only update the first dependency.
This is due to element search in the "updateDomVersion" method of the AbstractRewritePomsPhase class. I've attached a patch to solve the problem. I don't know if this is the right way to do. I change all the artifacts in the same pass. I don't take car of different type/classifier
Issue Links
- is duplicated by
-
MRELEASE-634
Versions of snapshot dependencies to the same artifact with different classifiers are not updated correctly during release:prepare
-
-
MRELEASE-659
snapshot dependency check on preparation of release: check artifacts WITH versions
-
- relates to
-
MNG-2871
Subartifact (ejb-client, test-jar etc.) are not reselved as active project artifacts in build phases prior to package
-
With 2.0-beta-5 and maven 2.0.6 a related issue (two dependencies to a project, one to the normal artifact, one to the test-jar) results in an error:
[INFO] ------------------------------------------------------------------------
[ERROR] BUILD ERROR
[INFO] ------------------------------------------------------------------------
[INFO] Failed to resolve artifact.
Missing:
----------
1) com.o2.release-test:release-test-module-one:test-jar:tests:5.0.2
I've attached a testcase to reproduce this bug.