17 lines
569 B
Groovy
17 lines
569 B
Groovy
plugins { id 'java-library'; id 'maven-publish' }
|
|
group = 'com.otone.demo'
|
|
version = "1.0.${System.getenv('BUILD_NUMBER') ?: '0'}"
|
|
repositories { maven { url = 'https://nexus.otone.run/repository/maven-central/' } }
|
|
publishing {
|
|
repositories {
|
|
maven {
|
|
url = 'https://nexus.otone.run/repository/maven-releases/'
|
|
credentials {
|
|
username = findProperty('nexusUser')
|
|
password = findProperty('nexusPass')
|
|
}
|
|
}
|
|
}
|
|
publications { maven(MavenPublication) { from components.java } }
|
|
}
|