-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpublish.gradle
44 lines (40 loc) · 1.49 KB
/
publish.gradle
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
apply plugin: 'signing'
apply plugin: 'com.netflix.nebula.maven-publish'
apply plugin: 'com.netflix.nebula.publish-verification'
signing {
// https://docs.gradle.org/current/userguide/signing_plugin.html#sec:signatory_credentials
sign publishing.publications.nebula
}
tasks.withType(Sign) {
onlyIf { project.hasProperty('signing.password') }
}
publishing {
publications {
nebula(MavenPublication) { publication ->
pom {
packaging 'jar'
licenses {
license {
name = 'The Apache Software License, Version 2.0'
url = 'http://www.apache.org/licenses/LICENSE-2.0.txt'
distribution = 'repo'
}
}
}
sourcesJar
javadocJar
}
}
repositories {
maven {
def isReleaseVersion = rootProject.version.toString().matches('^([0-9]+)\\.([0-9]+)\\.([0-9]+)$')
def releaseRepo = 'https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/'
def snapshotRepo = 'https://s01.oss.sonatype.org/content/repositories/snapshots/'
url = isReleaseVersion ? releaseRepo : snapshotRepo
credentials {
username = project.hasProperty('ossrhUsername') ? ossrhUsername : 'Unknown user'
password = project.hasProperty('ossrhPassword') ? ossrhPassword : 'Unknown password'
}
}
}
}