updated to publish to clip nexus repo

This commit is contained in:
Sxtanna 2020-07-28 13:47:28 -04:00
parent f9156209e7
commit 8f9b999e5a
1 changed files with 12 additions and 5 deletions

View File

@ -80,15 +80,22 @@ sourceSets {
}
publishing {
repositories {
maven {
url = uri("https://repo.extendedclip.com/content/repositories/public/")
credentials {
username = System.getProperty("JENKINS_USER")
password = System.getProperty("JENKINS_PASS")
}
}
}
publications {
maven(MavenPublication) {
groupId = project.group
artifactId = project.name
version = project.version.toString()
from(components.java)
}
}
}
publishToMavenLocal.dependsOn clean, test, jar
publish.dependsOn clean, test, jar