You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is there a pipeline DSL method for "Deploy artifacts to Artifactory" with maven build on version 2.7.2? I see that we can build and publish build info, but there doesn't seem to be a way to deploy the artifact using the artifactoryMaven.deployer information.
Is this currently available in the plugin for pipeline or is the uploadSpec the only method available at the moment?
The text was updated successfully, but these errors were encountered:
@idletekz,
In this example you can see we are setting the deployer settings that include:
releaseRepo, snapshotRepo and Artifactory server.
By executing the 'run' command with 'clean install' goal you are building and publishing the artifacts to Artifactory according to the above settings.
All the build information is stored in the buildInfo variable that later published as well to Artifactory.
@romangurevitch ahh didnt' realize it was build into maven run dsl. i took a closer look @ the build log and it was skipping deployment due to include/exclude pattern. I updated the pattern per wiki and now it's working. ty for quick reply.
Is there a pipeline DSL method for "Deploy artifacts to Artifactory" with maven build on version 2.7.2? I see that we can build and publish build info, but there doesn't seem to be a way to deploy the artifact using the artifactoryMaven.deployer information.
Is this currently available in the plugin for pipeline or is the uploadSpec the only method available at the moment?
The text was updated successfully, but these errors were encountered: