Skip to content

Releases: jenkinsci/pipeline-maven-plugin

pipeline-maven-2.3.0

21 May 17:25
Compare
Choose a tag to compare

Add configuration options to disable the publishers. Code look like

withMaven(
            maven:"maven-3.3.9",
            options: [
                findbugsPublisher(disabled: true), 
                artifactsPublisher(disabled: true), 
                junitPublisher(disabled: true), 
                openTasksPublisher(disabled: true)]) {
   sh "mvn clean deploy"
}

Download

pipeline-maven-2.3.0-beta-1

19 May 04:24
Compare
Choose a tag to compare
Pre-release

Add configuration options to disable the publishers. Code look like

withMaven(
            maven:"maven-3.3.9",
            options: [
                findbugsPublisher(disabled: true), 
                artifactsPublisher(disabled: true), 
                junitPublisher(disabled: true), 
                openTasksPublisher(disabled: true)]) {
   sh "mvn clean deploy"
}

pipeline-maven-2.2.1

19 May 04:28
Compare
Choose a tag to compare
  • JENKINS-39407 - Use Maven Global Settings and Maven Settings defined at the Jenkins global level if not specified in the pipeline withMaven(){...} step

pipeline-maven-2.2.0

07 May 18:15
Compare
Choose a tag to compare
  • Support Windows build agents
  • JENKINS-43617, JENKINS-43624, JENKINS-44088 - Fix bugs on windows build agents
  • JENKINS-44074 - Add support for the failsafe plugin

pipeline-maven-2.1.1-beta-1

07 May 10:21
Compare
Choose a tag to compare
Pre-release
pipeline-maven-parent-2.1.1-beta-1

[maven-release-plugin] copy for tag pipeline-maven-parent-2.1.1-beta-1

pipeline-maven-2.1.0

25 Apr 11:29
Compare
Choose a tag to compare

pipeline-maven-2.1.0-beta-1

23 Apr 21:25
Compare
Choose a tag to compare
Pre-release

JENKINS-39407: Use Maven Global Settings and Maven Settings defined at the Jenkins global level if not specified in the pipeline withMaven(){...} step

pipeline-maven-2.0.3

pipeline-maven-parent-2.0.2

18 Apr 14:04
Compare
Choose a tag to compare
  • JENKINS-43261 - Bug - withMaven parses emtpy EventSpy logfiles
  • JENKINS-43529 - Bug - Disabled Jenkins Maven Event Spy generates an invalid XML build log file
  • JENKINS-43491 - Enhancement - Feature flag to archive the Maven build logs for troubleshooting purpose (marker file ".archive-jenkins-maven-event-spy-logs")

pipeline-maven-plugin-2.0.1

11 Apr 16:39
Compare
Choose a tag to compare
  • JENKINS-43449 - Ensure that maven-events-spy is thread safe
  • JENKINS-43101 - Artifacts where not fingerprinted
  • JENKINS-43341 - Fix NullPointerException on MavenSpyLogProcessor