forked from ReactiveX/RxJava
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
249 lines (204 loc) · 7.01 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
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
plugins {
id("java-library")
id("checkstyle")
id("eclipse")
id("jacoco")
id("maven-publish")
id("ru.vyarus.animalsniffer") version "1.5.3"
id("me.champeau.gradle.jmh") version "0.5.3"
id("com.github.hierynomus.license") version "0.15.0"
id("com.jfrog.artifactory") version "4.21.0"
id("biz.aQute.bnd.builder") version "5.3.0"
id("com.vanniktech.maven.publish") version "0.14.2"
}
ext {
reactiveStreamsVersion = "1.0.3"
junitVersion = "4.13.2"
testNgVersion = "7.4.0"
mockitoVersion = "3.9.0"
jmhLibVersion = "1.21"
guavaVersion = "30.1.1-jre"
jacocoVersion = "0.8.4"
checkstyleVersion = "8.41"
}
def releaseTag = System.getenv("BUILD_TAG")
if (releaseTag != null && !releaseTag.isEmpty()) {
if (releaseTag.startsWith("v")) {
releaseTag = releaseTag.substring(1)
}
project.setProperty("VERSION_NAME" , releaseTag)
logger.info("Releasing with version: {}", version)
}
group = "io.reactivex.rxjava3"
version = project.properties["VERSION_NAME"]
description = "RxJava: Reactive Extensions for the JVM – a library for composing asynchronous and event-based programs using observable sequences for the Java VM."
sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
repositories {
mavenCentral()
}
dependencies {
signature "org.codehaus.mojo.signature:java18:1.0@signature"
api "org.reactivestreams:reactive-streams:$reactiveStreamsVersion"
jmh "org.reactivestreams:reactive-streams:$reactiveStreamsVersion"
testImplementation "junit:junit:$junitVersion"
testImplementation "org.mockito:mockito-core:$mockitoVersion"
testImplementation "org.reactivestreams:reactive-streams-tck:$reactiveStreamsVersion"
testImplementation "org.testng:testng:$testNgVersion"
testImplementation "com.google.guava:guava:$guavaVersion"
}
tasks.withType(JavaCompile) {
options.compilerArgs << "-parameters"
}
javadoc {
failOnError = false
exclude "**/internal/**"
exclude "**/test/**"
exclude "**/perf/**"
exclude "**/jmh/**"
options {
windowTitle = "RxJava Javadoc ${project.version}"
}
// Clear the following options to make the docs consistent with the old format
options.addStringOption("top").value = ""
options.addStringOption("doctitle").value = ""
options.addStringOption("header").value = ""
options.stylesheetFile = rootProject.file("gradle/stylesheet.css")
options.links(
"https://docs.oracle.com/javase/8/docs/api/",
"http://www.reactive-streams.org/reactive-streams-${reactiveStreamsVersion}-javadoc/"
)
}
animalsniffer {
annotation = "io.reactivex.rxjava3.internal.util.SuppressAnimalSniffer"
}
jar {
bnd(
"Bundle-Name": "rxjava",
"Bundle-Vendor": "RxJava Contributors",
"Bundle-Description": "Reactive Extensions for the JVM – a library for composing asynchronous and event-based programs using observable sequences for the Java VM.",
"Import-Package": "!org.junit,!junit.framework,!org.mockito.*,!org.testng.*,*",
"Bundle-DocURL": "https://github.com/ReactiveX/RxJava",
"Eclipse-ExtensibleAPI": "true",
"Automatic-Module-Name": "io.reactivex.rxjava3",
"Export-Package": "!io.reactivex.rxjava3.internal.*, io.reactivex.rxjava3.*"
)
}
license {
header rootProject.file("config/license/HEADER")
ext.year = Calendar.getInstance().get(Calendar.YEAR)
skipExistingHeaders true
ignoreFailures true
excludes(["**/*.md", "**/*.txt"])
}
jmh {
jmhVersion = jmhLibVersion
humanOutputFile = null
includeTests = false
jvmArgs = ["-Djmh.ignoreLock=true"]
jvmArgsAppend = ["-Djmh.separateClasspathJAR=true"]
if (project.hasProperty("jmh")) {
include = [".*" + project.jmh + ".*"]
logger.info("JMH: {}", include)
}
}
plugins.withType(EclipsePlugin) {
project.eclipse.classpath.plusConfigurations += [configurations.jmh]
}
test {
testLogging {
// showing skipped occasionally should prevent CI timeout due to lack of standard output
events=["skipped", "failed"] // "started", "passed"
// showStandardStreams = true
exceptionFormat="full"
debug.events = ["skipped", "failed"]
debug.exceptionFormat="full"
info.events = ["failed", "skipped"]
info.exceptionFormat="full"
warn.events = ["failed", "skipped"]
warn.exceptionFormat="full"
}
maxHeapSize = "1200m"
if (System.getenv("CI") == null) {
maxParallelForks = Runtime.runtime.availableProcessors().intdiv(2) ?: 1
}
}
task testng(type: Test) {
useTestNG()
testLogging {
events=["skipped", "failed"]
exceptionFormat="full"
debug.events = ["skipped", "failed"]
debug.exceptionFormat="full"
info.events = ["failed", "skipped"]
info.exceptionFormat="full"
warn.events = ["failed", "skipped"]
warn.exceptionFormat="full"
}
}
check.dependsOn testng
jacoco {
toolVersion = jacocoVersion
}
jacocoTestReport {
reports {
xml.enabled = true
html.enabled = true
}
}
build.dependsOn jacocoTestReport
checkstyle {
configFile = rootProject.file("config/checkstyle/checkstyle.xml")
toolVersion = checkstyleVersion
configProperties = [
"checkstyle.suppressions.file": rootProject.file("config/checkstyle/suppressions.xml"),
"checkstyle.header.file": rootProject.file("config/license/HEADER_JAVA")
]
}
apply from: file("gradle/javadoc_cleanup.gradle")
def fixPom() {
// Reactive-Streams as compile dependency
publishing.publications.all {
pom.withXml {
asNode().dependencies."*".findAll() {
it.scope.text() == "runtime" && project.configurations.compile.allDependencies.find { dep ->
dep.name == it.artifactId.text()
}
}.each { it.scope*.value = "compile"}
}
}
}
if (rootProject.hasProperty("releaseMode")) {
logger.lifecycle("ReleaseMode: {}", rootProject.releaseMode)
if ("branch".equals(rootProject.releaseMode)) {
// From https://github.com/ReactiveX/RxAndroid/blob/2.x/rxandroid/build.gradle#L94
artifactory {
contextUrl = "https://oss.jfrog.org"
publish {
repository {
repoKey = "oss-snapshot-local"
username = rootProject.bintrayUser
password = rootProject.bintrayKey
}
defaults {
publishConfigs("archives")
}
fixPom()
}
}
build.finalizedBy(artifactoryPublish)
}
if ("full".equals(rootProject.releaseMode)) {
fixPom()
signing {
if (project.hasProperty("SIGNING_PRIVATE_KEY") && project.hasProperty("SIGNING_PASSWORD")) {
useInMemoryPgpKeys(project.getProperty("SIGNING_PRIVATE_KEY"), project.getProperty("SIGNING_PASSWORD"))
}
}
mavenPublish {
nexus {
stagingProfile = "io.reactivex"
}
}
}
}