-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathsonatype.gradle
47 lines (40 loc) · 1.53 KB
/
sonatype.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
signing {
sign configurations.archives
}
uploadArchives {
repositories {
mavenDeployer {
beforeDeployment { MavenDeployment deployment -> signing.signPom(deployment) }
repository(url: "https://oss.sonatype.org/service/local/staging/deploy/maven2/") {
authentication(userName: ossrhUsername, password: ossrhPassword)
}
snapshotRepository(url: "https://oss.sonatype.org/content/repositories/snapshots/") {
authentication(userName: ossrhUsername, password: ossrhPassword)
}
pom.project {
name 'hipchat-java'
packaging 'jar'
description 'The Java client for HipChat v2 API.'
url 'https://github.com/evanwong/hipchat-java'
scm {
connection 'scm:git:[email protected]:evanwong/hipchat-java.git'
developerConnection 'scm:git:[email protected]:evanwong/hipchat-java.git'
url '[email protected]:evanwong/hipchat-java.git'
}
licenses {
license {
name 'MIT License'
url 'http://www.opensource.org/licenses/mit-license.php'
}
}
developers {
developer {
id 'evanwong'
name 'Evan Wong'
email '[email protected]'
}
}
}
}
}
}