forked from boskworks/bosk
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
290 lines (246 loc) · 8.44 KB
/
build.gradle
File metadata and controls
290 lines (246 loc) · 8.44 KB
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
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
import com.diffplug.gradle.spotless.SpotlessTask
plugins {
id 'java'
id 'com.diffplug.spotless' version '8.3.0'
id 'de.thetaphi.forbiddenapis' version '3.10' apply false
alias(libs.plugins.nexus)
alias(libs.plugins.spotbugs) apply false
}
ext {
jdkVersion = 25 // If you bump this, change the CI workflows too
minSupportedJavaVersion = 25
}
java {
toolchain {
languageVersion = JavaLanguageVersion.of(jdkVersion)
}
}
allprojects {
repositories {
mavenCentral()
}
group = 'works.bosk'
// version should be set as a property with -Pversion
tasks.withType(Javadoc).configureEach {
options.addStringOption('Xdoclint:-missing', '-quiet')
}
}
configure(subprojects.findAll {
it.name.startsWith("bosk-") || it.name.startsWith("lib-") || it.name == "boson"
}) {
apply plugin: 'java-library'
apply plugin: 'com.github.spotbugs'
apply plugin: 'de.thetaphi.forbiddenapis'
java {
toolchain {
languageVersion = JavaLanguageVersion.of(jdkVersion)
}
}
compileJava {
options.release = minSupportedJavaVersion
}
compileTestJava {
options.release = null // Accept the default from the JDK
}
tasks.withType(JavaCompile).configureEach {
options.encoding = 'UTF-8'
options.compilerArgs << '-Xlint'
options.compilerArgs << '-Xlint:-serial' // Don't care about Java serialization
options.compilerArgs << '-Xlint:-try' // Really annoying bogus "auto-closeable never used" warnings
options.compilerArgs << '-Xlint:-processing' // Not all annotations are meant for compile-time "annotation processing"
options.compilerArgs << '-Xlint:-missing-explicit-ctor' // We probably ought to fix this instead of suppressing it
options.compilerArgs << '-Xlint:-module' // We probably ought to fix this instead of suppressing it
// TODO: Eliminate these. These are legit module problems
options.compilerArgs << '-Xlint:-requires-automatic'
options.compilerArgs << '-Xlint:-requires-transitive-automatic'
options.forkOptions.jvmArgs << '--sun-misc-unsafe-memory-access=allow' // For Lombok
}
// It's important that bosk-annotations has no deps so other projects won't hesitate to use it
if (name != "bosk-annotations") {
dependencies {
implementation "jakarta.annotation:jakarta.annotation-api:3.0.0"
annotationProcessor libs.lombok
compileOnly libs.lombok
implementation libs.slf4j.api
testAnnotationProcessor libs.lombok
testCompileOnly libs.lombok
testImplementation libs.logback.classic
testImplementation libs.junit.api
testImplementation libs.junit.params
testImplementation(platform(libs.junit.bom))
testRuntimeOnly libs.junit.launcher
testRuntimeOnly libs.junit.engine
testImplementation libs.hamcrest
testImplementation libs.hamcrest.library
testImplementation libs.testcontainers
testImplementation libs.testcontainers.junit
testImplementation libs.testcontainers.toxiproxy
testImplementation libs.jmh.core
testAnnotationProcessor libs.jmh.apt
}
}
tasks.register('smoke', Test) {
// A set of tests that should finish in under a minute or so.
// Used as a quick double-check before publishing, when we've already
// run the full test suite and so there's no need to run it again.
// If publishing takes longer than desired, tests can be annotated
// with @Slow to omit them from this suite.
group = 'verification'
description = 'Skips tests tagged as "slow" for a quick verification that basic functionality works.'
useJUnitPlatform {
excludeTags 'slow'
}
}
tasks.withType(Test).configureEach {
javaLauncher = javaToolchains.launcherFor {
languageVersion = JavaLanguageVersion.of(jdkVersion)
}
useJUnitPlatform()
enableAssertions = true
testLogging.showStandardStreams = true
reports.junitXml.required = true
jvmArgs += "-Dslf4j.internal.verbosity=error" // Suppress replay warnings due to parallel test execution
}
spotbugs {
excludeFilter = file("${rootProject.projectDir}/spotbugsExclude.xml")
}
tasks.matching { it.name == "spotbugsTest" }.configureEach { enabled = false }
forbiddenApis {
bundledSignatures = ['jdk-unsafe', 'jdk-deprecated', 'jdk-non-portable', 'jdk-reflection']
signaturesFiles = files("${rootProject.projectDir}/forbidden-apis-signatures.txt")
ignoreFailures = false
failOnMissingClasses = false // Forbidden APIs struggles with the Classfile API
}
forbiddenApisTest {
bundledSignatures = ['jdk-unsafe', 'jdk-deprecated', 'jdk-non-portable', 'jdk-reflection']
signaturesFiles = files("${rootProject.projectDir}/forbidden-apis-signatures.txt")
failOnMissingClasses = false // Forbidden APIs struggles with the Classfile API
}
}
configure(subprojects.findAll { it.name.startsWith("bosk-") || it.name == "boson" }) {
dependencies {
// Make sure common logging settings are applied
testImplementation project(":lib-testing")
}
}
// Spotless configuration
subprojects {
apply plugin: 'com.diffplug.spotless'
spotless {
java {
importOrder '', '\\#' // Static imports after regular imports, as per mt-server standard and IntelliJ default
removeUnusedImports()
expandWildcardImports()
forbidModuleImports()
trimTrailingWhitespace()
leadingSpacesToTabs()
replaceRegex 'class-level javadoc indentation fix', /^\*/, ' *'
replaceRegex 'method-level javadoc indentation fix', /\t\*/, '\t *'
}
format 'gradle', {
target '**/*.gradle'
trimTrailingWhitespace()
leadingSpacesToTabs()
endWithNewline()
}
format 'misc', {
target '**/*.md', '**/.gitignore'
trimTrailingWhitespace()
//leadingSpacesToTabs() For markdown, we want to align some code examples very carefully, so we use spaces
replaceRegex 'class-level javadoc indentation fix', /^\*/, ' *'
replaceRegex 'method-level javadoc indentation fix', /\t\*/, '\t *'
endWithNewline()
}
}
tasks.withType(SpotlessTask).configureEach {
notCompatibleWithConfigurationCache("https://github.com/diffplug/spotless/issues/2878")
}
}
// Apply publishing only to published modules
configure(subprojects.findAll { it.name.startsWith("bosk-") || it.name == "boson" }) {
apply plugin: 'maven-publish'
apply plugin: 'signing'
java {
withSourcesJar()
withJavadocJar()
}
jar {
manifest {
// https://docs.gradle.org/current/userguide/building_java_projects.html#sec:jar_manifest
attributes("Implementation-Version": archiveVersion)
}
}
publishing {
publications {
mavenJava(MavenPublication) {
from components.java
versionMapping {
usage('java-api') { fromResolutionOf('runtimeClasspath') }
usage('java-runtime') { fromResolutionResult() }
}
pom {
name = 'Bosk'
packaging = 'jar'
description = 'Control plane state management library'
url = 'http://bosk.works'
licenses {
license {
name = 'The Apache License, Version 2.0'
url = 'https://www.apache.org/licenses/LICENSE-2.0.txt'
}
}
developers {
developer {
id = 'pdoyle'
name = 'Patrick Doyle'
email = 'p.r.doyle@gmail.com'
}
developer {
id = 'gjohnson'
name = 'Grady Johnson'
email = 'gradycsjohnson@gmail.com'
}
}
scm {
connection = 'scm:git:git://github.com/boskworks/bosk.git'
developerConnection = 'scm:git:ssh://github.com:boskworks/bosk.git'
url = 'https://github.com/boskworks/bosk'
}
}
}
}
repositories {
maven {
def releasesRepoUrl = 'https://ossrh-staging-api.central.sonatype.com/service/local/staging/deploy/maven2/'
def snapshotsRepoUrl = 'https://ossrh-staging-api.central.sonatype.com/content/repositories/snapshots/'
url = version.endsWith('SNAPSHOT') ? snapshotsRepoUrl : releasesRepoUrl
credentials {
username = project.properties['ossrhUsername'] ?: 'bogusUser'
password = project.properties['ossrhPassword'] ?: 'bogusPassword'
}
}
}
}
signing {
sign publishing.publications.mavenJava
def signingKey = findProperty("signingKey")
def signingPassword = findProperty("signingPassword")
useInMemoryPgpKeys(signingKey, signingPassword)
}
javadoc {
failOnError = false
if (JavaVersion.current().isJava9Compatible()) {
options.addBooleanOption('html5', true)
}
}
}
nexusPublishing {
repositories {
sonatype {
nexusUrl = uri('https://ossrh-staging-api.central.sonatype.com/service/local/')
snapshotRepositoryUrl = uri('https://ossrh-staging-api.central.sonatype.com/content/repositories/snapshots/')
username = project.properties['ossrhUsername'] ?: 'bogusUser'
password = project.properties['ossrhPassword'] ?: 'bogusPassword'
}
}
}