|
View:
New views
9 Messages
—
Rating Filter:
Alert me
|
|
|
[jira] Created: (MNG-3550) Support more prerequisites like compiler versionSupport more prerequisites like compiler version
------------------------------------------------ Key: MNG-3550 URL: http://jira.codehaus.org/browse/MNG-3550 Project: Maven 2 Issue Type: Improvement Components: POM Reporter: Vincent Siveton Fix For: 2.1-alpha-1 It should be useful if the <prerequisites/> tag could support more informations than the maven version. I could imagine something like: {noformat} <project> ... <prerequisites> <maven>2.0.6</maven> <compiler>1.5</compiler> <memory>512m</memory> <diskSpace>100m</diskSpace> </prerequisites> ... </project> {noformat} See the concrete use case in the Maven Plugin Plugin report: http://maven.apache.org/plugins/maven-plugin-plugin/plugin-info.html -- 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-3550) Support more prerequisites like compiler version[ http://jira.codehaus.org/browse/MNG-3550?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Vincent Siveton updated MNG-3550: --------------------------------- Priority: Minor (was: Major) Fix Version/s: 2.1-alpha-1 > Support more prerequisites like compiler version > ------------------------------------------------ > > Key: MNG-3550 > URL: http://jira.codehaus.org/browse/MNG-3550 > Project: Maven 2 > Issue Type: Improvement > Components: POM > Reporter: Vincent Siveton > Priority: Minor > Fix For: 2.1-alpha-1 > > > It should be useful if the <prerequisites/> tag could support more informations than the maven version. I could imagine something like: > {noformat} > <project> > ... > <prerequisites> > <maven>2.0.6</maven> > <compiler>1.5</compiler> > <memory>512m</memory> > <diskSpace>100m</diskSpace> > </prerequisites> > ... > </project> > {noformat} > See the concrete use case in the Maven Plugin Plugin report: > http://maven.apache.org/plugins/maven-plugin-plugin/plugin-info.html -- 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: (MNG-3550) Support more prerequisites like compiler version[ http://jira.codehaus.org/browse/MNG-3550?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=134884#action_134884 ] Paul Benedict commented on MNG-3550: ------------------------------------ How is this feature affected by the introduction of tool chains (specifies version compiler) or the enforcer plugin? It seems there is definite overlap here. > Support more prerequisites like compiler version > ------------------------------------------------ > > Key: MNG-3550 > URL: http://jira.codehaus.org/browse/MNG-3550 > Project: Maven 2 > Issue Type: Improvement > Components: POM > Reporter: Vincent Siveton > Priority: Minor > Fix For: 2.1-alpha-1 > > > It should be useful if the <prerequisites/> tag could support more informations than the maven version. I could imagine something like: > {noformat} > <project> > ... > <prerequisites> > <maven>2.0.6</maven> > <compiler>1.5</compiler> > <memory>512m</memory> > <diskSpace>100m</diskSpace> > </prerequisites> > ... > </project> > {noformat} > See the concrete use case in the Maven Plugin Plugin report: > http://maven.apache.org/plugins/maven-plugin-plugin/plugin-info.html -- 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: (MNG-3550) Support more prerequisites like compiler version[ http://jira.codehaus.org/browse/MNG-3550?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=134890#action_134890 ] Milos Kleint commented on MNG-3550: ----------------------------------- yup. toolchains should ideally render java prerequisite obsolete as well. it should not matter what jdk you run the the maven build with.. re memory - is that checking physical memory or the heap space for the process? not sure how that would work in embedded environment.. > Support more prerequisites like compiler version > ------------------------------------------------ > > Key: MNG-3550 > URL: http://jira.codehaus.org/browse/MNG-3550 > Project: Maven 2 > Issue Type: Improvement > Components: POM > Reporter: Vincent Siveton > Priority: Minor > Fix For: 2.1-alpha-1 > > > It should be useful if the <prerequisites/> tag could support more informations than the maven version. I could imagine something like: > {noformat} > <project> > ... > <prerequisites> > <maven>2.0.6</maven> > <compiler>1.5</compiler> > <memory>512m</memory> > <diskSpace>100m</diskSpace> > </prerequisites> > ... > </project> > {noformat} > See the concrete use case in the Maven Plugin Plugin report: > http://maven.apache.org/plugins/maven-plugin-plugin/plugin-info.html -- 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: (MNG-3550) Support more prerequisites like compiler version[ http://jira.codehaus.org/browse/MNG-3550?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=134941#action_134941 ] Brian Fox commented on MNG-3550: -------------------------------- The enforcer is definately the place to check for the other prerequisites > Support more prerequisites like compiler version > ------------------------------------------------ > > Key: MNG-3550 > URL: http://jira.codehaus.org/browse/MNG-3550 > Project: Maven 2 > Issue Type: Improvement > Components: POM > Reporter: Vincent Siveton > Priority: Minor > Fix For: 2.1-alpha-1 > > > It should be useful if the <prerequisites/> tag could support more informations than the maven version. I could imagine something like: > {noformat} > <project> > ... > <prerequisites> > <maven>2.0.6</maven> > <compiler>1.5</compiler> > <memory>512m</memory> > <diskSpace>100m</diskSpace> > </prerequisites> > ... > </project> > {noformat} > See the concrete use case in the Maven Plugin Plugin report: > http://maven.apache.org/plugins/maven-plugin-plugin/plugin-info.html -- 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: (MNG-3550) Support more prerequisites like compiler version[ http://jira.codehaus.org/browse/MNG-3550?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=134954#action_134954 ] Paul Benedict commented on MNG-3550: ------------------------------------ Mark as WONTFIX? > Support more prerequisites like compiler version > ------------------------------------------------ > > Key: MNG-3550 > URL: http://jira.codehaus.org/browse/MNG-3550 > Project: Maven 2 > Issue Type: Improvement > Components: POM > Reporter: Vincent Siveton > Priority: Minor > Fix For: 2.1-alpha-1 > > > It should be useful if the <prerequisites/> tag could support more informations than the maven version. I could imagine something like: > {noformat} > <project> > ... > <prerequisites> > <maven>2.0.6</maven> > <compiler>1.5</compiler> > <memory>512m</memory> > <diskSpace>100m</diskSpace> > </prerequisites> > ... > </project> > {noformat} > See the concrete use case in the Maven Plugin Plugin report: > http://maven.apache.org/plugins/maven-plugin-plugin/plugin-info.html -- 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: (MNG-3550) Support more prerequisites like compiler version[ http://jira.codehaus.org/browse/MNG-3550?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=134960#action_134960 ] Vincent Siveton commented on MNG-3550: -------------------------------------- IMHO it is more POM ontology issue... Any product/projects have requirements to run and build. Enforcer is only used for the build. So how to specify runtime prerequisites? Note: I used the word compiler (and not JDK) to be more platform independent. > Support more prerequisites like compiler version > ------------------------------------------------ > > Key: MNG-3550 > URL: http://jira.codehaus.org/browse/MNG-3550 > Project: Maven 2 > Issue Type: Improvement > Components: POM > Reporter: Vincent Siveton > Priority: Minor > Fix For: 2.1-alpha-1 > > > It should be useful if the <prerequisites/> tag could support more informations than the maven version. I could imagine something like: > {noformat} > <project> > ... > <prerequisites> > <maven>2.0.6</maven> > <compiler>1.5</compiler> > <memory>512m</memory> > <diskSpace>100m</diskSpace> > </prerequisites> > ... > </project> > {noformat} > See the concrete use case in the Maven Plugin Plugin report: > http://maven.apache.org/plugins/maven-plugin-plugin/plugin-info.html -- 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: (MNG-3550) Support more prerequisites like compiler version[ http://jira.codehaus.org/browse/MNG-3550?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=134965#action_134965 ] Paul Benedict commented on MNG-3550: ------------------------------------ Vincent, I think the answer would be ToolChains. > Support more prerequisites like compiler version > ------------------------------------------------ > > Key: MNG-3550 > URL: http://jira.codehaus.org/browse/MNG-3550 > Project: Maven 2 > Issue Type: Improvement > Components: POM > Reporter: Vincent Siveton > Priority: Minor > Fix For: 2.1-alpha-1 > > > It should be useful if the <prerequisites/> tag could support more informations than the maven version. I could imagine something like: > {noformat} > <project> > ... > <prerequisites> > <maven>2.0.6</maven> > <compiler>1.5</compiler> > <memory>512m</memory> > <diskSpace>100m</diskSpace> > </prerequisites> > ... > </project> > {noformat} > See the concrete use case in the Maven Plugin Plugin report: > http://maven.apache.org/plugins/maven-plugin-plugin/plugin-info.html -- 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] Closed: (MNG-3550) Support more prerequisites like compiler version[ http://jira.codehaus.org/browse/MNG-3550?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Brett Porter closed MNG-3550. ----------------------------- Resolution: Won't Fix Fix Version/s: (was: 2.1-alpha-1) seems toolchains will address this? > Support more prerequisites like compiler version > ------------------------------------------------ > > Key: MNG-3550 > URL: http://jira.codehaus.org/browse/MNG-3550 > Project: Maven 2 > Issue Type: Improvement > Components: POM > Reporter: Vincent Siveton > Priority: Minor > > It should be useful if the <prerequisites/> tag could support more informations than the maven version. I could imagine something like: > {noformat} > <project> > ... > <prerequisites> > <maven>2.0.6</maven> > <compiler>1.5</compiler> > <memory>512m</memory> > <diskSpace>100m</diskSpace> > </prerequisites> > ... > </project> > {noformat} > See the concrete use case in the Maven Plugin Plugin report: > http://maven.apache.org/plugins/maven-plugin-plugin/plugin-info.html -- 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 |
| Free Forum Powered by Nabble | Forum Help |