-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
154 lines (132 loc) · 4.95 KB
/
build.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
import static org.apache.tools.ant.taskdefs.condition.Os.*
buildscript {
repositories {
mavenCentral()
}
dependencies {
classpath 'com.google.protobuf:protobuf-gradle-plugin:0.8.1'
}
}
apply plugin: 'java'
apply plugin: 'signing'
apply plugin: 'maven'
apply plugin: 'com.google.protobuf'
group 'io.leonis'
version '0.0.2'
archivesBaseName = "subra-protocol"
rootProject.description = 'protocols for subra'
sourceCompatibility = 1.6
targetCompatibility = 1.6
if (!isFamily(FAMILY_WINDOWS) && !isFamily(FAMILY_MAC) && !isFamily(FAMILY_UNIX))
throw new GradleException("Unsupported operating system!")
javadoc {
source = sourceSets.main.allJava
classpath = configurations.compile
}
repositories {
mavenCentral()
}
protobuf {
protoc {
// The artifact spec for the Protobuf Compiler
artifact = 'com.google.protobuf:protoc:3.3.0'
}
generatedFilesBaseDir = "$projectDir/build/proto-generated-java"
}
clean {
delete protobuf.generatedFilesBaseDir
}
dependencies {
compile 'com.google.protobuf:protobuf-java:3.3.0'
protobuf fileTree('src/main/protobuf/')
}
task sourcesJar(type: Jar, dependsOn: classes) {
classifier = 'sources'
from sourceSets.main.allSource
}
task javadocJar(type: Jar, dependsOn: javadoc) {
classifier = 'javadoc'
from javadoc.destinationDir
}
artifacts {
archives javadocJar, sourcesJar
}
if (!project.hasProperty("signing.keyId") && System.getenv("signingKeyId") != null) {
allprojects { ext."signing.keyId" = System.getenv("signingKeyId") }
}
if (!project.hasProperty("signing.password") && System.getenv("signingPassword") != null) {
allprojects { ext."signing.password" = System.getenv("signingPassword") }
}
if (!project.hasProperty("signing.secretKeyRingFile") && System.getenv("signingSecretKeyRing") != null) {
def file = new File("$projectDir/secring.gpg")
file.createNewFile()
file.text = System.getenv("signingSecretKeyRing")
allprojects { ext."signing.secretKeyRingFile" = "$projectDir/secring.gpg" }
}
signing {
sign configurations.archives
}
if (project.hasProperty("sign")) {
signArchives.enabled = sign.toBoolean()
} else if (System.getenv("sign") != null) {
signArchives.enabled = System.getenv("sign").toBoolean()
} else {
signArchives.enabled = false
}
uploadArchives {
repositories {
mavenDeployer {
beforeDeployment { MavenDeployment deployment -> signing.signPom(deployment) }
repository(url: "https://oss.sonatype.org/service/local/staging/deploy/maven2/") {
if (project.hasProperty("sonatypeUsername") && project.hasProperty("sonatypePassword")) {
authentication(userName: sonatypeUsername, password: sonatypePassword)
} else if (System.getenv("sonatypeUsername") != null && System.getenv("sonatypePassword") != null) {
authentication(userName: System.getenv("sonatypeUsername"), password: System.getenv("sonatypePassword"))
}
}
snapshotRepository(url: "https://oss.sonatype.org/content/repositories/snapshots/") {
if (project.hasProperty("sonatypeUsername") && project.hasProperty("sonatypePassword")) {
authentication(userName: sonatypeUsername, password: sonatypePassword)
} else if (System.getenv("sonatypeUsername") != null && System.getenv("sonatypePassword") != null) {
authentication(userName: System.getenv("sonatypeUsername"), password: System.getenv("sonatypePassword"))
}
}
pom.project {
name 'subra-protocol'
packaging 'jar'
description 'protocols for subra'
url 'https://github.com/delta-leonis/subra-protocol/'
licenses {
license {
name 'AGPL'
url 'https://github.com/delta-leonis/subra-protocol/blob/master/LICENSE'
distribution 'repo'
}
}
scm {
url 'https://github.com/delta-leonis/subra-protocol/'
connection 'scm:git:git://github.com/delta-leonis/subra-protocol.git'
developerConnection 'scm:git:ssh://git@github.com/delta-leonis/subra-protocol.git'
}
developers {
developer {
id 'romni'
name 'Rimon Oz'
}
developer {
id 'thumbnail'
name 'Jeroen de Jong'
}
developer {
id 'RyanMeulenkamp'
name 'Ryan Meulenkamp'
}
developer {
id 'ThomasHakkers'
name 'Thomas Hakkers'
}
}
}
}
}
}