-
Notifications
You must be signed in to change notification settings - Fork 31
/
build.gradle.kts
236 lines (211 loc) · 8.55 KB
/
build.gradle.kts
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
import java.time.Duration
import org.gradle.api.tasks.testing.logging.TestExceptionFormat
import org.gradle.external.javadoc.CoreJavadocOptions
import org.gradle.external.javadoc.StandardJavadocDocletOptions
// These values come from gradle.properties
val ossrhUsername: String by project
val ossrhPassword: String by project
buildscript {
repositories {
mavenCentral()
mavenLocal()
}
}
plugins {
java
"java-library"
checkstyle
jacoco
signing
"maven-publish"
idea
id("org.jetbrains.kotlin.jvm") version "1.6.10"
id("de.marcphilipp.nexus-publish") version "0.4.0"
id("io.codearte.nexus-staging") version "0.30.0"
}
// Note about org.jetbrains.kotlin.jvm in the plugins block:
// Normally we wouldn't have to explicitly list the Kotlin plugin here since we're
// only building Java code. However-- possibly because OkHttp uses Kotlin-- if we
// don't list the plugin here, then we're unable to use the "api" configuration in
// dependencies even though that would normally be made available by the combination
// of "java" and "java-library". See:
// https://discuss.gradle.org/t/does-the-java-library-plugin-actually-do-anything-gradle-cant-do-natively/34361/5
// We have to make sure the version shown here matches the version that is used by
// OkHttp-- otherwise we will end up with an extra Kotlin runtime dependency in our
// own pom.
// This does not appear to be an issue with other Java projects such as
// launchdarkly-java-sdk-common; there, we can just use "java" and "java-library".
repositories {
mavenLocal()
// Before LaunchDarkly release artifacts get synced to Maven Central they are here along with snapshots:
maven { url = uri("https://oss.sonatype.org/content/groups/public/") }
mavenCentral()
}
base {
group = "com.launchdarkly"
archivesBaseName = "okhttp-eventsource"
version = version
}
java {
withJavadocJar()
withSourcesJar()
sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
}
object Versions {
const val launchdarklyLogging = "1.1.1"
const val okhttp = "4.9.3"
}
dependencies {
api("com.launchdarkly:launchdarkly-logging:${Versions.launchdarklyLogging}")
api("com.squareup.okhttp3:okhttp:${Versions.okhttp}")
testImplementation("org.mockito:mockito-core:1.10.19")
testImplementation("com.launchdarkly:test-helpers:2.0.1")
testImplementation("com.google.guava:guava:32.0.1-jre")
testImplementation("junit:junit:4.12")
testImplementation("org.hamcrest:hamcrest-all:1.3")
}
checkstyle {
toolVersion = "9.3"
configFile = file("${project.rootDir}/checkstyle.xml")
}
tasks.jar.configure {
manifest {
attributes(mapOf("Implementation-Version" to project.version))
}
}
tasks.javadoc.configure {
// Force the Javadoc build to fail if there are any Javadoc warnings. See: https://discuss.gradle.org/t/javadoc-fail-on-warning/18141/3
// See JDK-8200363 (https://bugs.openjdk.java.net/browse/JDK-8200363)
// for information about the -Xwerror option.
(options as CoreJavadocOptions).addStringOption("Xwerror")
// The following should allow hyperlinks to com.launchdarkly.logging classes to go to
// the correct external URLs
if (options is StandardJavadocDocletOptions) {
(options as StandardJavadocDocletOptions).links(
"https://javadoc.io/doc/com.launchdarkly/launchdarkly-logging/${Versions.launchdarklyLogging}"
)
}
}
tasks.test.configure {
testLogging {
events("passed", "skipped", "failed", "standardOut", "standardError")
showStandardStreams = true
exceptionFormat = TestExceptionFormat.FULL
}
}
tasks.jacocoTestReport.configure {
reports {
xml.required.set(true)
csv.required.set(true)
html.required.set(true)
}
}
tasks.jacocoTestCoverageVerification.configure {
// See notes in CONTRIBUTING.md on code coverage. Unfortunately we can't configure line-by-line code
// coverage overrides within the source code itself, because Jacoco operates on bytecode.
violationRules {
val knownMissedLinesForMethods = mapOf(
// The key for each of these items is the complete method signature minus the "com.launchdarkly.eventsource." prefix.
"EventParser.IncrementalMessageDataInputStream.read()" to 7,
"EventParser.IncrementalMessageDataInputStream.read(byte[])" to 1,
"EventParser.IncrementalMessageDataInputStream.read(byte[], int, int)" to 2,
"EventParser.IncrementalMessageDataInputStream.canGetNextChunk()" to 3,
"EventSource.awaitClosed(long, java.util.concurrent.TimeUnit)" to 2,
"EventSource.awaitClosed(java.time.Duration)" to 1,
"Helpers.utf8ByteArrayOutputStreamToString(java.io.ByteArrayOutputStream)" to 2,
"HttpConnectStrategy.defaultTrustManager()" to 2,
"HttpConnectStrategy.Client.awaitClosed(long)" to 1,
"HttpConnectStrategy.Client.createHttpClient()" to 2,
"MessageEvent.getData()" to 2,
"ModernTLSSocketFactory.createSocket(java.lang.String, int)" to 1,
"ModernTLSSocketFactory.createSocket(java.lang.String, int, java.net.InetAddress, int)" to 1,
"ModernTLSSocketFactory.createSocket(java.net.InetAddress, int)" to 1,
"ModernTLSSocketFactory.createSocket(java.net.InetAddress, int, java.net.InetAddress, int)" to 1,
"ModernTLSSocketFactory.createSocket(java.net.Socket, java.lang.String, int, boolean)" to 1,
"ModernTLSSocketFactory.getDefaultCipherSuites()" to 1,
"ModernTLSSocketFactory.getSupportedCipherSuites()" to 1,
"background.BackgroundEventSource.dispatchEvent(com.launchdarkly.eventsource.StreamEvent)" to 3
)
knownMissedLinesForMethods.forEach { (signature, maxMissedLines) ->
if (maxMissedLines > 0) { // < 0 means skip entire method
rule {
element = "METHOD"
includes = listOf("com.launchdarkly.eventsource." + signature)
limit {
counter = "LINE"
value = "MISSEDCOUNT"
maximum = maxMissedLines.toBigDecimal()
}
}
}
}
// General rule that we should expect 100% test coverage; exclude any methods that have overrides above
rule {
element = "METHOD"
limit {
counter = "LINE"
value = "MISSEDCOUNT"
maximum = 0.toBigDecimal()
}
excludes = knownMissedLinesForMethods.map { (signature, maxMissedLines) ->
"com.launchdarkly.eventsource." + signature }
}
}
}
idea {
module {
isDownloadJavadoc = true
isDownloadSources = true
}
}
nexusStaging {
packageGroup = "com.launchdarkly"
numberOfRetries = 40 // we've seen extremely long delays in closing repositories
}
publishing {
publications {
create<MavenPublication>("mavenJava") {
from(components["java"])
groupId = "com.launchdarkly"
artifactId = "okhttp-eventsource"
pom {
name.set("okhttp-eventsource")
description.set("EventSource Implementation built on OkHttp")
url.set("https://github.com/launchdarkly/okhttp-eventsource")
licenses {
license {
name.set("The Apache License, Version 2.0")
url.set("http://www.apache.org/licenses/LICENSE-2.0.txt")
}
}
developers {
developer {
name.set("LaunchDarkly SDK Team")
email.set("[email protected]")
}
}
scm {
connection.set("scm:git:git://github.com/launchdarkly/okhttp-eventsource.git")
developerConnection.set("scm:git:ssh:[email protected]:launchdarkly/okhttp-eventsource.git")
url.set("https://github.com/launchdarkly/okhttp-eventsource")
}
}
}
}
repositories {
mavenLocal()
}
}
nexusPublishing {
clientTimeout.set(Duration.ofMinutes(2)) // we've seen extremely long delays in creating repositories
repositories {
sonatype {
username.set(ossrhUsername)
password.set(ossrhPassword)
}
}
}
signing {
sign(publishing.publications["mavenJava"])
}