Issue Type: Improvement Improvement
Affects Versions: current
Assignee: Justin Ryan
Components: job-dsl-plugin
Created: 03/Mar/14 7:39 PM
Description:

Currently the job dsl supports the following:

job {
  name '...'

  steps {
    maven {
      goals("-B clean package")
      ...
    }
  }
}

But it would be nice having support for different maven installation like this:

job {
  name '...'

  steps {

    maven {
      mavenName("Maven 2.0.11")
      goals("-B clean package")
    }
    maven {
      mavenName("Maven 3.0.5")
      goals("-B clean package")
    }
    ...
  }
}

But currently the code has hard coded the maveName with "default" which prevents any job configuration like the above.

Project: Jenkins
Priority: Major Major
Reporter: Karl-Heinz Marbaise
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators.
For more information on JIRA, see: http://www.atlassian.com/software/jira

--
You received this message because you are subscribed to the Google Groups "Jenkins Issues" group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.

Reply via email to