-
Type:
Bug
-
Resolution: Unresolved
-
Priority:
Blocker
-
Component/s: artifactory-plugin
-
None
-
Environment: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 } } }