и так пробовал ... сЦукоооо
publishing {
publications {
maven(MavenPublication) {
from
components.java }
}
repositories {
maven {
repository(url: System.getenv("NEXUS_URL")) {
authentication(userName: System.getenv("NEXUS_USER"), password: System.getenv("NEXUS_PWD"))
}
snapshotRepository(url: System.getenv("NEXUS_URL_SNAP")) {
authentication(userName: System.getenv("NEXUS_USER"), password: System.getenv("NEXUS_PWD"))
}
}
}
}