Re: New Pipeline Maven plugin

2016-11-21 Thread Cyrille Le Clerc
Hello Sven, > Is it still under development? Is it production ready? Yes we are working at improving / enhancing it and yes we think it is production ready. There are already many users. > If I do not specify parameter jdk it will choose Java 7, which Jenkins has listed as JDK number 2. While

Re: New Pipeline Maven plugin

2016-11-21 Thread Sverre Moe
I am enquiring the status of Pipeline Maven Integration Plugin. https://wiki.jenkins-ci.org/display/JENKINS/Pipeline+Maven+Plugin Is it still under development? Is it production ready? Created by the Snippet Generator: withMaven(jdk: 'jdk1.8.0_102', maven: 'apache-maven-3.3.3', mavenLocalRepo: '

Re: New Pipeline Maven plugin

2016-08-15 Thread Cyrille Le Clerc
Hello ok999, > Assuming maven was already installed in the node & have the files configured (settings.xml, local repo etc) from the TOOLS setting of jenkins.. > Will this plugin override those settings? Yes, "withMaven(){}" will override all the settings that you define with the wrapper. We

Re: New Pipeline Maven plugin

2016-08-15 Thread Cyrille Le Clerc
Hello Will, Fingerprint and reports rendering are things we would like to see in forthcoming releases of this plugin. We hope that the community will help on this kind of feature. For the moment, we unfortunately have to use the following verbose steps: step([$class: 'ArtifactArchiver', artifa

Re: New Pipeline Maven plugin

2016-08-12 Thread Will Currie
Nice. It seems to non-pipeline/'old-school'/regular jenkins maven build has support for tracking fingerprints of artefacts used and produced by any given maven build. I'm taking about the work that seems to be done by MavenFingerprinter

Re: New Pipeline Maven plugin

2016-08-12 Thread Álvaro Lobato
It will override the settings only if you decide to, by specifying a settings parameter. If you don't specify, it will use the already defined ones. As for the release plugin I'm not aware of any plan for it on pipeline, are you having problems with sh/bat mvn release:prepare release:perform ?

Re: New Pipeline Maven plugin

2016-08-11 Thread niristotle okram
Assuming maven was already installed in the node & have the files configured (settings.xml, local repo etc) from the TOOLS setting of jenkins.. Will this plugin override those settings? withMaven(mavenInstallation: 'M3', mavenLocalRepo: '.repository', mavenSettingsConfig: 'maven-settings-for-game

Re: New Pipeline Maven plugin

2016-08-11 Thread Álvaro Lobato
Yes, thanks Daniel. -- You received this message because you are subscribed to the Google Groups "Jenkins Users" group. To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-users+unsubscr...@googlegroups.com. To view this discussion on the web visit http

Re: New Pipeline Maven plugin

2016-08-11 Thread Daniel Beck
> On 11.08.2016, at 18:33, Álvaro Lobato wrote: > > released the first beta version, already available in the update center Experimental update site only: https://jenkins.io/blog/2013/09/23/experimental-plugins-update-center/ -- You received this message because you are subscribed to the Go

New Pipeline Maven plugin

2016-08-11 Thread Álvaro Lobato
Hello everyone, I'd like to introduce you to the new Pipeline Maven plugin . The intention of this plugin is to help using maven from pipeline, setting up a maven environment by using a withMaven step. This environment can la