-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpublish.gradle
76 lines (63 loc) · 1.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
apply plugin: 'maven'
apply plugin: 'signing'
group = 'com.github.maltalex'
archivesBaseName = 'ineter'
version = '0.3.1'
task javadocJar(type: Jar) {
classifier = 'javadoc'
from javadoc
}
task sourcesJar(type: Jar) {
classifier = 'sources'
from sourceSets.main.allSource
}
artifacts {
archives javadocJar, sourcesJar
}
signing {
required {
gradle.taskGraph.hasTask("uploadArchives")
}
sign configurations.archives
}
def OSSUsername = hasProperty('sonatypeUsername') ? sonatypeUsername : "dummyOssUsername"
def OSSPassword = hasProperty('sonatypePassword') ? sonatypePassword : "dummyOssPassword"
uploadArchives {
repositories {
mavenDeployer {
beforeDeployment { MavenDeployment deployment ->
signing.signPom(deployment)
}
repository(url: "https://oss.sonatype.org/service/local/staging/deploy/maven2/") {
authentication(userName: OSSUsername, password: OSSPassword)
}
snapshotRepository(url: "https://oss.sonatype.org/content/repositories/snapshots/") {
authentication(userName: OSSUsername, password: OSSPassword)
}
pom.project {
name 'ineter'
packaging 'jar'
description ' Fast Java library for working with IP addresses, ranges, and subnets '
url 'https://github.com/maltalex/Ineter'
scm {
url 'https://github.com/maltalex/Ineter'
connection 'scm:git:https://github.com/maltalex/Ineter'
developerConnection 'scm:git@github.com:maltalex/Ineter'
}
licenses {
license {
name 'Mozilla Public License 2.0'
url 'http://mozilla.org/MPL/2.0/'
}
}
developers {
developer {
id 'maltalex'
name 'Alex Maltinsky'
email 'code@bit48.net'
}
}
}
}
}
}