I'm attempting to upload artifacts to Nexus 3. I have managed to successfully do it, but it looks like things are not grouped properly when I look in the UI.
I can use curl or maven with the following config and URL.
uploadArchives {
repositories {
mavenDeployer {
repository(url: "http://localhost:8081/repository/my-snapshot/") {
authentication(userName: "admin", password: "admin123")
}
pom.version = "${version}-SNAPSHOT"
pom.artifactId = "my-server"
pom.groupId = "com.example"
}
}
}
But when I do, The artifact is not grouped and therefore I can delete a directory by it's version. I have to delete every single file:
Is this a limitation of Nexus 3?