Hi, right now I’m trying to publish a artifact to nexus 2, I was able to do that but at the donwload section it showing we a lot of check-sum file (sha256, sha512) which I didn’t need can we some home hide them ?
I want only to have this 3 jar file to display in the download section
I just using a very simple deploy script in gradle to show the
java {
withJavadocJar()
withSourcesJar()
}
publishing{
publication{
maven(MavenPublication) {
artifactId = “admin”
from components.java
}
}
repositories{
maven{
name “nexus”
url “myURL”
allowInsecureProtocol true
credentials{
username “username”
password “password”
}
}
}
}