-
Bug
-
Resolution: Unresolved
-
Blocker
-
None
-
Jenkins ver. 2.150.2
Artifactory Plugin 3.1.0
All plugins are up-to-date
We upgraded the artifactory plugin to 3.0.0 now (3.1.0) and our Pipeline builds stuck on artifactoryMavenBuild:
[Pipeline] { (Maven Build) [Pipeline] script [Pipeline] { [Pipeline] newBuildInfo [Pipeline] artifactoryMavenBuild
This is pipeline configuration:
Artifactory server is predefined in general configuration, also as credentialsId and rtMaven.tool (Maven)
def server = Artifactory.server "Master" server.credentialsId = 'Artifactory' def rtMaven = Artifactory.newMavenBuild() rtMaven.tool = "Maven" def buildInfo stage('Maven Build') { steps { script { buildInfo = rtMaven.run pom: 'appname/pom.xml', goals: '-U clean install -P dev -Dmaster.name=${Cluster} -Dcore.version=${CORE_VERSION}' buildInfo.retention maxBuilds: 10, maxDays: 5, deleteBuildArtifacts: true } } }
I just downgrade:
And now is working?!