Is there any way to create new Hudson job by one more Hudson job based one previous Jobs?
For example if I need to create new bunch of jobs one by one, Automatically
You could use groovy system script like this :
def jenkins = hudson.model.Hudson.instance def template = jenkins.getItem("MyTemplate") def job = jenkins.copy(template,"MyNewJob") job.scm = new hudson.scm.SubversionSCM("http://base/branches/mybranche") job.save()