-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdeploy.gradle
More file actions
106 lines (94 loc) · 3.21 KB
/
deploy.gradle
File metadata and controls
106 lines (94 loc) · 3.21 KB
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
apply plugin: "maven-publish"
apply plugin: "signing"
def isReleaseBuild() {
return VERSION_NAME.contains("SNAPSHOT") == false
}
def getReleaseRepositoryUrl() {
return hasProperty("RELEASE_REPOSITORY_URL") ? RELEASE_REPOSITORY_URL
: "https://ossrh-staging-api.central.sonatype.com/service/local/staging/deploy/maven2/"
}
def getSnapshotRepositoryUrl() {
return hasProperty("SNAPSHOT_REPOSITORY_URL") ? SNAPSHOT_REPOSITORY_URL
: "https://central.sonatype.com/repository/maven-snapshots/"
}
def getRepositoryUsername() {
return hasProperty("NEXUS_USERNAME") ? NEXUS_USERNAME : ""
}
def getRepositoryPassword() {
return hasProperty("NEXUS_PASSWORD") ? NEXUS_PASSWORD : ""
}
nexusPublishing {
packageGroup = GROUP
repositories {
sonatype {
nexusUrl = uri("https://ossrh-staging-api.central.sonatype.com/service/local/")
username = getRepositoryUsername()
password = getRepositoryPassword()
}
}
transitionCheckOptions {
maxRetries.set(40)
delayBetween.set(java.time.Duration.ofMillis(4000))
}
}
afterEvaluate { project ->
tasks.withType(Sign) {
onlyIf { isReleaseBuild() && project.hasProperty("signing.gnupg.keyName") }
}
signing {
required { isReleaseBuild() && gradle.taskGraph.hasTask("publish") }
useGpgCmd()
sign publishing.publications
}
publishing {
publications {
mavenJava(MavenPublication) {
groupId = GROUP
artifactId = POM_ARTIFACT_ID
version = VERSION_NAME
from components.java
pom {
name = POM_NAME
description = POM_DESCRIPTION
url = POM_URL
packaging = POM_PACKAGING
licenses {
license {
name = POM_LICENCE_NAME
url = POM_LICENCE_URL
distribution = POM_LICENCE_DIST
}
}
developers {
developer {
id = POM_DEVELOPER_ID
name = POM_DEVELOPER_NAME
email = POM_DEVELOPER_EMAIL
}
}
organization {
name = POM_DEVELOPER_NAME
url = POM_ORGANIZATION_URL
}
scm {
connection = POM_SCM_CONNECTION
developerConnection = POM_SCM_DEV_CONNECTION
url = POM_SCM_URL
}
}
}
}
repositories {
maven {
name = "nexus"
def releasesRepoUrl = getReleaseRepositoryUrl()
def snapshotsRepoUrl = getSnapshotRepositoryUrl()
url = isReleaseBuild() ? releasesRepoUrl : snapshotsRepoUrl
credentials {
username = getRepositoryUsername()
password = getRepositoryPassword()
}
}
}
}
}