add repositories, fix publishing for ci
This commit is contained in:
parent
420290fd28
commit
8eb36225eb
4 changed files with 15 additions and 9 deletions
|
@ -28,8 +28,8 @@ subprojects {
|
||||||
apply from: rootProject.file('gradle/ide/idea.gradle')
|
apply from: rootProject.file('gradle/ide/idea.gradle')
|
||||||
apply from: rootProject.file('gradle/compile/java.gradle')
|
apply from: rootProject.file('gradle/compile/java.gradle')
|
||||||
apply from: rootProject.file('gradle/test/junit5.gradle')
|
apply from: rootProject.file('gradle/test/junit5.gradle')
|
||||||
|
apply from: rootProject.file('gradle/repositories/maven.gradle')
|
||||||
apply from: rootProject.file('gradle/test/jmh.gradle')
|
apply from: rootProject.file('gradle/test/jmh.gradle')
|
||||||
apply from: rootProject.file('gradle/publishing/publication.gradle')
|
apply from: rootProject.file('gradle/publishing/publication.gradle')
|
||||||
}
|
}
|
||||||
|
|
||||||
apply from: rootProject.file('gradle/publishing/sonatype.gradle')
|
apply from: rootProject.file('gradle/publishing/sonatype.gradle')
|
||||||
|
|
|
@ -4,4 +4,4 @@ version = 0.1.0
|
||||||
|
|
||||||
gradle.wrapper.version = 6.6.1
|
gradle.wrapper.version = 6.6.1
|
||||||
mockito.version = 3.10.0
|
mockito.version = 3.10.0
|
||||||
jxl.version = 2.6.12
|
jxl.version = 2.6.12
|
||||||
|
|
|
@ -54,13 +54,15 @@ if (project.hasProperty("signing.keyId")) {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
nexusPublishing {
|
if (project.hasProperty("ossrhUsername")) {
|
||||||
repositories {
|
nexusPublishing {
|
||||||
sonatype {
|
repositories {
|
||||||
username = project.property('ossrhUsername')
|
sonatype {
|
||||||
password = project.property('ossrhPassword')
|
username = project.property('ossrhUsername')
|
||||||
packageGroup = "org.xbib"
|
password = project.property('ossrhPassword')
|
||||||
|
packageGroup = "org.xbib"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
clientTimeout = Duration.ofSeconds(600)
|
||||||
}
|
}
|
||||||
clientTimeout = Duration.ofSeconds(600)
|
|
||||||
}
|
}
|
||||||
|
|
4
gradle/repositories/maven.gradle
Normal file
4
gradle/repositories/maven.gradle
Normal file
|
@ -0,0 +1,4 @@
|
||||||
|
repositories {
|
||||||
|
mavenLocal()
|
||||||
|
mavenCentral()
|
||||||
|
}
|
Loading…
Reference in a new issue