-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathnexus.gradle
155 lines (137 loc) · 4.57 KB
/
nexus.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
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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
apply plugin: 'maven-publish'
apply plugin: 'signing'
def isReleaseBuild() {
return VERSION.contains("SNAPSHOT") == false
}
def getReleaseRepositoryUrl() {
return hasProperty('NEXUS_RELEASE_REPOSITORY_URL') ? NEXUS_RELEASE_REPOSITORY_URL
: "https://oss.sonatype.org/service/local/staging/deploy/maven2/"
}
def getSnapshotRepositoryUrl() {
return hasProperty('NEXUS_SNAPSHOT_REPOSITORY_URL') ? NEXUS_SNAPSHOT_REPOSITORY_URL
: "https://oss.sonatype.org/content/repositories/snapshots/"
}
def getRepositoryUsername() {
def pFile = file("${rootDir}//local.properties")
Properties p = new Properties()
pFile.withInputStream { stream ->
p.load(stream)
}
return p.getProperty('NEXUS_USERNAME')
}
def getRepositoryPassword() {
def pFile = file("${rootDir}//local.properties")
Properties p = new Properties()
pFile.withInputStream { stream ->
p.load(stream)
}
return p.getProperty('NEXUS_PASSWORD')
}
def getSigningKeyId() {
def pFile = file("${rootDir}//local.properties")
Properties p = new Properties()
pFile.withInputStream { stream ->
p.load(stream)
}
return p.getProperty('signing.keyId')
}
def getSigningKey() {
def pFile = file("${rootDir}//local.properties")
Properties p = new Properties()
pFile.withInputStream { stream ->
p.load(stream)
}
return p.getProperty('signing.key')
}
def getSigningPassword() {
def pFile = file("${rootDir}//local.properties")
Properties p = new Properties()
pFile.withInputStream { stream ->
p.load(stream)
}
return p.getProperty('signing.password')
}
afterEvaluate { project ->
publishing {
publications {
mavenJava(MavenPublication) {
artifactId = ARTIFACTID
from components.java
versionMapping {
usage('java-api') {
fromResolutionOf('runtimeClasspath')
}
usage('java-runtime') {
fromResolutionResult()
}
}
pom {
name = ARTIFACTID
packaging = POM_PACKAGING
description = POM_DESCRIPTION
url = POM_URL
scm {
url = POM_URL
connection = POM_SCM_CONNECTION
developerConnection = POM_SCM_CONNECTION
}
licenses {
license {
name = POM_LICENCE_NAME
url = POM_LICENCE_URL
distribution = POM_LICENCE_DIST
}
}
developers {
developer {
id = POM_DEVELOPER_ID
name = POM_DEVELOPER_NAME
}
}
}
}
}
repositories {
maven {
allowInsecureProtocol = true
//change URLs to point to your repos, e.g. http://my.org/repo
def releasesRepoUrl = getReleaseRepositoryUrl()
def snapshotsRepoUrl = getSnapshotRepositoryUrl()
url = version.endsWith('SNAPSHOT') ? snapshotsRepoUrl : releasesRepoUrl
credentials {
username getRepositoryUsername()
password getRepositoryPassword()
}
}
}
}
// https://docs.gradle.org/current/userguide/signing_plugin.html#sec:publishing_the_signatures
signing {
required { gradle.taskGraph.hasTask("publish") }
// def signingKeyId = getSigningKeyId()
// def signingKey = getSigningKey()
// def signingPassword = getSigningPassword()
// useInMemoryPgpKeys(signingKeyId, signingKey, signingPassword)
// sign publishing.publications.mavenJava
sign configurations.archives
}
javadoc {
if (JavaVersion.current().isJava9Compatible()) {
options.addBooleanOption('html5', true)
}
}
task javadocJar(type: Jar, dependsOn: javadoc) {
duplicatesStrategy = 'include'
classifier = 'javadoc'
from 'build/docs/javadoc'
}
task sourcesJar(type: Jar, dependsOn: classes) {
duplicatesStrategy = 'include'
classifier = 'sources'
from sourceSets.main.allSource
}
artifacts {
archives sourcesJar
archives javadocJar
}
}