j

jenkins-maven-plugin

Automated management of Jenkins jobs via Maven. Much of the information needed by Jenkins when creating a job is already in the Maven pom. The SCM information and CI url are present. Jenkins jobs also typically have names that reflect the groupId, artifactId, and version in some manner. This plugin automates the process of creating Jenkins jobs by harvesting information from the POM to create XML config files in the format Jenkins needs. The Jenkins CLI API is then used to create, update, read, and delete Jenkins jobs on the CI server. If your Jenkins instance requires authentication, add your public key to your user account on the Jenkins server.
http://${kuali.site.hostname}/maven/plugins/${project.artifactId}/${project.version}
Jeff Caddel
Files download
File Operation
jenkins-maven-plugin-1.2.8.jar download
jenkins-maven-plugin-1.2.8.pom download
jenkins-maven-plugin-1.2.8-sources.jar download
Apache Maven
<dependency>
  <groupId>org.kuali.maven.plugins</groupId>
  <artifactId>jenkins-maven-plugin</artifactId>
  <version>1.2.8</version>
  <type>maven-plugin</type>
</dependency>
Gradle Groovy
implementation 'org.kuali.maven.plugins:jenkins-maven-plugin:1.2.8'
Gradle Kotlin
implementation("org.kuali.maven.plugins:jenkins-maven-plugin:1.2.8")
Scala SBT
libraryDependencies += "org.kuali.maven.plugins" % "jenkins-maven-plugin" % "1.2.8"
Groovy Grape
@Grapes(
  @Grab(group='org.kuali.maven.plugins', module='jenkins-maven-plugin', version='1.2.8')
)
Apache Ivy
<dependency org="org.kuali.maven.plugins" name="jenkins-maven-plugin" rev="1.2.8" />
Leiningen
[org.kuali.maven.plugins/jenkins-maven-plugin "1.2.8"]
Apache Buildr
'org.kuali.maven.plugins:jenkins-maven-plugin:jar:1.2.8'