-
Notifications
You must be signed in to change notification settings - Fork 0
/
publication.gradle
89 lines (74 loc) · 2.75 KB
/
publication.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
apply plugin: 'maven'
apply plugin: 'maven-publish'
apply plugin: 'signing'
project.ext.isSignatoryConfigured = {
if(project.hasProperty('signing.keyId') && project.hasProperty('signing.password') && project.hasProperty('signing.secretKeyRingFile'))
return true
else
logger.warn("No signatory is available to sign")
return false
}.memoize()
def hasCredentials = hasProperty('ossrhUsername') && hasProperty('ossrhPassword')
uploadArchives.doFirst {
if (!hasCredentials) {
throw new InvalidUserDataException('Missing properties "ossrhUsername" and "ossrhPassword"')
}
}
if (hasCredentials) {
configureDeployment()
}
@SuppressWarnings(["GroovyAssignabilityCheck", "GrUnresolvedAccess"])
def configureDeployment() {
signing {
if(isSignatoryConfigured())
sign configurations.archives
}
publishing {
publications {
mavenJava(MavenPublication) {
from components.java
}
}
}
uploadArchives {
repositories {
mavenDeployer {
beforeDeployment {
if (isSignatoryConfigured()) {
signing.signPom(it)
}
}
repository(url: "https://oss.sonatype.org/service/local/staging/deploy/maven2/") {
authentication(userName: ossrhUsername, password: ossrhPassword)
}
pom.project {
name 'Ratpack form parser'
description 'Ratpack extension for parsing requests'
packaging 'jar'
url 'https://ratpack.chest.one'
scm {
url 'https://github.com/DNAlchemist/ratpack-form-parser'
connection 'scm:git:git://github.com/DNAlchemist/ratpack-form-parser.git'
developerConnection 'scm:git:git://github.com/DNAlchemist/ratpack-form-parser.git'
}
licenses {
license {
name 'MIT License'
url 'http://www.opensource.org/licenses/mit-license.php'
}
}
developers {
developer {
id 'dnalchemist'
name 'Mikhalev Ruslan'
email '[email protected]'
}
}
}
snapshotRepository(url: "https://oss.sonatype.org/content/repositories/snapshots/") {
authentication(userName: ossrhUsername, password: ossrhPassword)
}
}
}
}
}