-
Notifications
You must be signed in to change notification settings - Fork 3
/
publish.gradle
84 lines (70 loc) · 2.67 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
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
final def isRelease = project.hasProperty('release')
final def isSnapshot = project.hasProperty('snapshot')
if (isRelease || isSnapshot) {
final String version = project.version
if (isRelease && version.contains('SNAPSHOT')) {
throw new IllegalStateException("Release was requested, but 'version' contains 'SNAPSHOT': $version")
}
if (isSnapshot && !version.contains('SNAPSHOT')) {
throw new IllegalStateException("Snapshot was requested, but 'version' does not contain 'SNAPSHOT': $version")
}
apply plugin: 'maven-publish'
apply plugin: 'signing'
afterEvaluate {
publishing {
publications {
release(MavenPublication) {
groupId group
artifactId POM_ARTIFACT_ID
it.version version
pom {
name = POM_NAME
packaging = POM_PACKAGING
description = POM_DESCRIPTION
url = POM_URL
scm {
url = POM_SCM_URL
connection = POM_SCM_CONNECTION
developerConnection = POM_SCM_DEV_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
}
}
}
from components.release
}
}
repositories {
// local repository - in a directory
// maven {
// url "$rootDir/repo"
// }
// sonatype
maven {
url isRelease
? 'https://oss.sonatype.org/service/local/staging/deploy/maven2/'
: 'https://oss.sonatype.org/content/repositories/snapshots/'
credentials(PasswordCredentials) {
username NEXUS_USERNAME
password NEXUS_PASSWORD
}
}
}
signing {
publishing.publications.all { publication ->
sign publication
}
}
}
}
}