I am using Gradle-Artifactory plugin of Jenkins to upload my artifacts to Artifactory. After the successful build, the artifact is getting uploaded to wrong directory in Artifactory.
I need the artifact to upload at the path libs-snapshot-local/com/myorg/usr/1.0/myfile-1.0.war but it instead get loaded to libs-snapshot-local/com.myorg.usr/1.0/myfile-1.0.war
I have below settings in my build.gradle file
group = 'com.myorg.usr'
archivesBaseName = 'myfile'
version = '1.0'
artifactory {}block definition. Also do you usemavenormaven-plublishplugin? In case of the later, please also add yourpublications {}block definition. - JBaruchartifactory{}block? I am using theJenkins-Artifactoryplugin which uploads artifactory without the need to include that block. And I don't usemavenormaven-publishplugin. - DDK