Hi
I wanted to upload a zip file to nexus using gradle. But, it always tries to upload a jar. Can you let me know, how to specify a zip file there? I have added the below lines:
uploadArchives {
repositories.mavenDeployer {
repository(url: "http://localhost:8085/nexus/content/repositories/testXMS") {
uniqueVersion = false
authentication(userName: "admin", password: "admin123")
}
}
}