[jira] Updated: (MNG-1957) jdk/jdk clause in the activation section has to provide more complex expressions.

2009-02-04 Thread Brett Porter (JIRA)

 [ 
http://jira.codehaus.org/browse/MNG-1957?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Brett Porter updated MNG-1957:
--

Fix Version/s: (was: 2.0.11)

 jdk/jdk clause in the activation section has to provide more complex 
 expressions.
 -

 Key: MNG-1957
 URL: http://jira.codehaus.org/browse/MNG-1957
 Project: Maven 2
  Issue Type: Improvement
  Components: POM
Affects Versions: 2.0, 2.0.1
Reporter: Trustin Lee
 Fix For: 2.1.0-M2

 Attachments: MNG-1957-maven-project.patch


 For now, jdk/jdk provides only one operator '!' which means negation, but 
 it would be great if i can use '+' and ~ operator:
 jdk1.5+/jdk  !-- this will be activated when the current JDK version is 
 1.5 or above (e.g. 1.6) --
 jdk1.1 ~ 1.4/jdk !-- this will be activated when the current JDK version 
 is between 1.1 and 1.4 --
 jdk~ 1.3/jdk !-- this will be activated when the current JDK version is 
 1.3 or below --
 jdk1.4 ~/jdk. !-- the same with 1.5+ --

-- 
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] Updated: (MNG-1957) jdk/jdk clause in the activation section has to provide more complex expressions.

2009-02-01 Thread Brett Porter (JIRA)

 [ 
http://jira.codehaus.org/browse/MNG-1957?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Brett Porter updated MNG-1957:
--

  Fix Version/s: (was: 2.0.x)
 2.1.0-M2
 2.0.11
Patch Submitted: [Yes]

 jdk/jdk clause in the activation section has to provide more complex 
 expressions.
 -

 Key: MNG-1957
 URL: http://jira.codehaus.org/browse/MNG-1957
 Project: Maven 2
  Issue Type: Improvement
  Components: POM
Affects Versions: 2.0, 2.0.1
Reporter: Trustin Lee
 Fix For: 2.0.11, 2.1.0-M2

 Attachments: MNG-1957-maven-project.patch


 For now, jdk/jdk provides only one operator '!' which means negation, but 
 it would be great if i can use '+' and ~ operator:
 jdk1.5+/jdk  !-- this will be activated when the current JDK version is 
 1.5 or above (e.g. 1.6) --
 jdk1.1 ~ 1.4/jdk !-- this will be activated when the current JDK version 
 is between 1.1 and 1.4 --
 jdk~ 1.3/jdk !-- this will be activated when the current JDK version is 
 1.3 or below --
 jdk1.4 ~/jdk. !-- the same with 1.5+ --

-- 
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] Updated: (MNG-1957) jdk/jdk clause in the activation section has to provide more complex expressions.

2009-01-28 Thread Torben S. Giesselmann (JIRA)

 [ 
http://jira.codehaus.org/browse/MNG-1957?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Torben S. Giesselmann updated MNG-1957:
---

Attachment: MNG-1957-maven-project.patch

This patch implements the following behavior for JDK version matching:

* current version matching behavior ({{JDK_VERSION.startsWith( jdk )}}, 
negation through !)
* *version ranges* (by using {{VersionRange}}, upgrade number becomes build 
number)
* negation operator ! works for version ranges as well



 jdk/jdk clause in the activation section has to provide more complex 
 expressions.
 -

 Key: MNG-1957
 URL: http://jira.codehaus.org/browse/MNG-1957
 Project: Maven 2
  Issue Type: Improvement
  Components: POM
Affects Versions: 2.0, 2.0.1
Reporter: Trustin Lee
 Fix For: 2.0.x

 Attachments: MNG-1957-maven-project.patch


 For now, jdk/jdk provides only one operator '!' which means negation, but 
 it would be great if i can use '+' and ~ operator:
 jdk1.5+/jdk  !-- this will be activated when the current JDK version is 
 1.5 or above (e.g. 1.6) --
 jdk1.1 ~ 1.4/jdk !-- this will be activated when the current JDK version 
 is between 1.1 and 1.4 --
 jdk~ 1.3/jdk !-- this will be activated when the current JDK version is 
 1.3 or below --
 jdk1.4 ~/jdk. !-- the same with 1.5+ --

-- 
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] Updated: (MNG-1957) jdk/jdk clause in the activation section has to provide more complex expressions.

2006-11-02 Thread Kenney Westerhof (JIRA)
 [ http://jira.codehaus.org/browse/MNG-1957?page=all ]

Kenney Westerhof updated MNG-1957:
--

Fix Version/s: (was: 2.0.5)
   2.0.6

 jdk/jdk clause in the activation section has to provide more complex 
 expressions.
 -

 Key: MNG-1957
 URL: http://jira.codehaus.org/browse/MNG-1957
 Project: Maven 2
  Issue Type: Improvement
  Components: POM
Affects Versions: 2.0, 2.0.1
Reporter: Trustin Lee
 Fix For: 2.0.6


 For now, jdk/jdk provides only one operator '!' which means negation, but 
 it would be great if i can use '+' and ~ operator:
 jdk1.5+/jdk  !-- this will be activated when the current JDK version is 
 1.5 or above (e.g. 1.6) --
 jdk1.1 ~ 1.4/jdk !-- this will be activated when the current JDK version 
 is between 1.1 and 1.4 --
 jdk~ 1.3/jdk !-- this will be activated when the current JDK version is 
 1.3 or below --
 jdk1.4 ~/jdk. !-- the same with 1.5+ --

-- 
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