[jira] Commented: (MRELEASE-297) release doesn't bump versions in properties to the next dev iteration

2011-06-10 Thread Martin Todorov (JIRA)

[ 
http://jira.codehaus.org/browse/MRELEASE-297?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=269988#action_269988
 ] 

Martin Todorov commented on MRELEASE-297:
-

Would be great to have this!

 release doesn't bump versions in properties to the next dev iteration
 -

 Key: MRELEASE-297
 URL: http://jira.codehaus.org/browse/MRELEASE-297
 Project: Maven 2.x Release Plugin
  Issue Type: Bug
  Components: prepare
Affects Versions: 2.0-beta-6, 2.0-beta-7
Reporter: Brian Fox
Assignee: Maria Odea Ching

 Properties used as versions are correctly updated to the release version and 
 committed, but they are not bumped to the next snapshot after.

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: 
http://jira.codehaus.org/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira




[jira] Commented: (MRELEASE-297) release doesn't bump versions in properties to the next dev iteration

2010-03-25 Thread Hans Beemsterboer (JIRA)

[ 
http://jira.codehaus.org/browse/MRELEASE-297?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=215282#action_215282
 ] 

Hans Beemsterboer commented on MRELEASE-297:


I had the same problem without using version properties.
It looks like the development versions get bumped up when you change method 
updateDomVersion as follows:

{code:title=AbstractRewritePomsPhase.java|borderStyle=solid}
if ( dependency != null )
{
versionElement = dependency.getChild( version, 
dependencyRoot.getNamespace() );
if ( versionElement != null )
{
dependencyVersion = versionElement.getTextTrim();

if (mappedVersion != null  mappedVersion.endsWith(SNAPSHOT) )
{
rewriteValue( versionElement, mappedVersion );
}

}
}
{code} 

 release doesn't bump versions in properties to the next dev iteration
 -

 Key: MRELEASE-297
 URL: http://jira.codehaus.org/browse/MRELEASE-297
 Project: Maven 2.x Release Plugin
  Issue Type: Bug
  Components: prepare
Affects Versions: 2.0-beta-6, 2.0-beta-7
Reporter: Brian Fox
Assignee: Maria Odea Ching

 Properties used as versions are correctly updated to the release version and 
 committed, but they are not bumped to the next snapshot after.

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: 
http://jira.codehaus.org/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira




[jira] Commented: (MRELEASE-297) release doesn't bump versions in properties to the next dev iteration

2010-01-13 Thread Martin Zeltner (JIRA)

[ 
http://jira.codehaus.org/browse/MRELEASE-297?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=206779#action_206779
 ] 

Martin Zeltner commented on MRELEASE-297:
-

Hi

It affects also version 2.0-beta-9

Further the version xml element of release-module1 is changed from 
version${module1.version}/version to the fixed version 0.0.3-SNAPSHOT.

Cheers
Martin


 release doesn't bump versions in properties to the next dev iteration
 -

 Key: MRELEASE-297
 URL: http://jira.codehaus.org/browse/MRELEASE-297
 Project: Maven 2.x Release Plugin
  Issue Type: Bug
  Components: prepare
Affects Versions: 2.0-beta-6, 2.0-beta-7
Reporter: Brian Fox
Assignee: Maria Odea Ching

 Properties used as versions are correctly updated to the release version and 
 committed, but they are not bumped to the next snapshot after.

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: 
http://jira.codehaus.org/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira




[jira] Commented: (MRELEASE-297) release doesn't bump versions in properties to the next dev iteration

2008-12-22 Thread Jan Arend Jansen (JIRA)

[ 
http://jira.codehaus.org/browse/MRELEASE-297?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=158963#action_158963
 ] 

Jan Arend Jansen commented on MRELEASE-297:
---

Also affects 2.0-beta8

 release doesn't bump versions in properties to the next dev iteration
 -

 Key: MRELEASE-297
 URL: http://jira.codehaus.org/browse/MRELEASE-297
 Project: Maven 2.x Release Plugin
  Issue Type: Bug
  Components: prepare
Affects Versions: 2.0-beta-6, 2.0-beta-7
Reporter: Brian Fox
Assignee: Maria Odea Ching

 Properties used as versions are correctly updated to the release version and 
 committed, but they are not bumped to the next snapshot after.

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: 
http://jira.codehaus.org/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira




[jira] Commented: (MRELEASE-297) release doesn't bump versions in properties to the next dev iteration

2008-12-22 Thread Jan Arend Jansen (JIRA)

[ 
http://jira.codehaus.org/browse/MRELEASE-297?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=158964#action_158964
 ] 

Jan Arend Jansen commented on MRELEASE-297:
---

Before 
{code:xml}
project xmlns=http://maven.apache.org/POM/4.0.0; 
xmlns:xsi=http://www.w3.org/2001/XMLSchema-instance; 
xsi:schemaLocation=http://maven.apache.org/POM/4.0.0 
http://maven.apache.org/maven-v4_0_0.xsd;
  modelVersion4.0.0/modelVersion
  groupIdnl.test/groupId
  artifactIdrelease-test/artifactId
  packagingpom/packaging
  nameTest Releases/name
  version0.0.2-SNAPSHOT/version
  modules
modulerelease-module1/module
  /modules
  properties
module1.version0.0.2-SNAPSHOT/module1.version
  /properties
  build
plugins
plugin
groupIdorg.apache.maven.plugins/groupId
artifactIdmaven-release-plugin/artifactId
version2.0-beta-8/version
/plugin   
/plugins
  /build
  dependencyManagement
dependencies
dependency
groupIdnl.test/groupId
artifactIdrelease-module1/artifactId
version${module1.version}/version
/dependency
/dependencies
  /dependencyManagement
  scm
connectionscm:svn:https:///svn/repos/tests/trunk//connection
  /scm
/project
{code:xml}

After:
{code:xml}
project xmlns=http://maven.apache.org/POM/4.0.0; 
xmlns:xsi=http://www.w3.org/2001/XMLSchema-instance; 
xsi:schemaLocation=http://maven.apache.org/POM/4.0.0 
http://maven.apache.org/maven-v4_0_0.xsd;
  modelVersion4.0.0/modelVersion
  groupIdnl.test/groupId
  artifactIdrelease-test/artifactId
  packagingpom/packaging
  nameTest Releases/name
  version0.0.3-SNAPSHOT/version
  modules
modulerelease-module1/module
  /modules
  properties
module1.version0.0.2/module1.version
  /properties
  build
plugins
plugin
groupIdorg.apache.maven.plugins/groupId
artifactIdmaven-release-plugin/artifactId
version2.0-beta-8/version
/plugin   
/plugins
  /build
  dependencyManagement
dependencies
dependency
groupIdnl.test/groupId
artifactIdrelease-module1/artifactId
version${module1.version}/version
/dependency
/dependencies
  /dependencyManagement
  scm
connectionscm:svn:https:///svn/repos/tests/trunk//connection
  /scm
/project
{code:xml}

 release doesn't bump versions in properties to the next dev iteration
 -

 Key: MRELEASE-297
 URL: http://jira.codehaus.org/browse/MRELEASE-297
 Project: Maven 2.x Release Plugin
  Issue Type: Bug
  Components: prepare
Affects Versions: 2.0-beta-6, 2.0-beta-7
Reporter: Brian Fox
Assignee: Maria Odea Ching

 Properties used as versions are correctly updated to the release version and 
 committed, but they are not bumped to the next snapshot after.

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: 
http://jira.codehaus.org/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira