forked from graphql-java/graphql-java
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
372 lines (322 loc) · 12.4 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
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
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
import java.text.SimpleDateFormat
plugins {
id 'java'
id 'java-library'
id 'maven-publish'
id 'antlr'
id 'signing'
id "com.github.johnrengelman.shadow" version "8.1.1"
id "biz.aQute.bnd.builder" version "6.4.0"
id "io.github.gradle-nexus.publish-plugin" version "2.0.0"
id "groovy"
id "me.champeau.jmh" version "0.7.2"
}
java {
toolchain {
languageVersion = JavaLanguageVersion.of(11)
}
}
def makeDevelopmentVersion(parts) {
def version = String.join("-", parts)
println "created development version: $version"
return version
}
def getDevelopmentVersion() {
def dateTime = new SimpleDateFormat('yyyy-MM-dd\'T\'HH-mm-ss').format(new Date())
def gitCheckOutput = new StringBuilder()
def gitCheckError = new StringBuilder()
def gitCheck = ["git", "-C", projectDir.toString(), "rev-parse", "--is-inside-work-tree"].execute()
gitCheck.waitForProcessOutput(gitCheckOutput, gitCheckError)
def isGit = gitCheckOutput.toString().trim()
if (isGit != "true") {
return makeDevelopmentVersion(["0.0.0", dateTime, "no-git"])
}
// a default Github Action env variable set to 'true'
def isCi = Boolean.parseBoolean(System.env.CI)
if (isCi) {
def gitHashOutput = new StringBuilder()
def gitHashError = new StringBuilder()
def gitShortHash = ["git", "-C", projectDir.toString(), "rev-parse", "--short", "HEAD"].execute()
gitShortHash.waitForProcessOutput(gitHashOutput, gitHashError)
def gitHash = gitHashOutput.toString().trim()
if (gitHash.isEmpty()) {
println "git hash is empty: error: ${gitHashError.toString()}"
throw new IllegalStateException("git hash could not be determined")
}
return makeDevelopmentVersion(["0.0.0", dateTime, gitHash])
}
def gitRevParseOutput = new StringBuilder()
def gitRevParseError = new StringBuilder()
def gitRevParse = ["git", "-C", projectDir.toString(), "rev-parse", "--abbrev-ref", "HEAD"].execute()
gitRevParse.waitForProcessOutput(gitRevParseOutput, gitRevParseError)
def branchName = gitRevParseOutput.toString().trim()
return makeDevelopmentVersion(["0.0.0", branchName, "SNAPSHOT"])
}
def reactiveStreamsVersion = '1.0.3'
def releaseVersion = System.env.RELEASE_VERSION
def antlrVersion = '4.11.1' // https://mvnrepository.com/artifact/org.antlr/antlr4-runtime
def guavaVersion = '32.1.2-jre'
version = releaseVersion ? releaseVersion : getDevelopmentVersion()
group = 'com.graphql-java'
gradle.buildFinished { buildResult ->
println "*******************************"
println "*"
if (buildResult.failure != null) {
println "* FAILURE - ${buildResult.failure}"
} else {
println "* SUCCESS"
}
println "* Version: $version"
println "*"
println "*******************************"
}
repositories {
mavenCentral()
mavenLocal()
}
jar {
from "LICENSE.md"
from "src/main/antlr/Graphql.g4"
from "src/main/antlr/GraphqlOperation.g4"
from "src/main/antlr/GraphqlSDL.g4"
from "src/main/antlr/GraphqlCommon.g4"
manifest {
attributes('Automatic-Module-Name': 'com.graphqljava')
}
}
dependencies {
compileOnly 'org.jetbrains:annotations:24.1.0'
implementation 'org.antlr:antlr4-runtime:' + antlrVersion
api 'com.graphql-java:java-dataloader:3.3.0'
api 'org.reactivestreams:reactive-streams:' + reactiveStreamsVersion
antlr 'org.antlr:antlr4:' + antlrVersion
implementation 'com.google.guava:guava:' + guavaVersion
testImplementation group: 'junit', name: 'junit', version: '4.13.2'
testImplementation 'org.spockframework:spock-core:2.0-groovy-3.0'
testImplementation 'org.codehaus.groovy:groovy:3.0.22'
testImplementation 'org.codehaus.groovy:groovy-json:3.0.22'
testImplementation 'com.google.code.gson:gson:2.11.0'
testImplementation 'org.eclipse.jetty:jetty-server:11.0.22'
testImplementation 'com.fasterxml.jackson.core:jackson-databind:2.17.2'
testImplementation 'org.awaitility:awaitility-groovy:4.2.0'
testImplementation 'com.github.javafaker:javafaker:1.0.2'
testImplementation 'org.reactivestreams:reactive-streams-tck:' + reactiveStreamsVersion
testImplementation "io.reactivex.rxjava2:rxjava:2.2.21"
testImplementation "io.projectreactor:reactor-core:3.6.8"
testImplementation 'org.testng:testng:7.10.2' // use for reactive streams test inheritance
testImplementation 'org.openjdk.jmh:jmh-core:1.37'
testAnnotationProcessor 'org.openjdk.jmh:jmh-generator-annprocess:1.37'
jmh 'org.openjdk.jmh:jmh-core:1.37'
jmh 'org.openjdk.jmh:jmh-generator-annprocess:1.37'
}
shadowJar {
minimize()
archiveClassifier.set('')
configurations = [project.configurations.compileClasspath]
relocate('com.google.common', 'graphql.com.google.common') {
include 'com.google.common.collect.*'
include 'com.google.common.base.*'
include 'com.google.common.math.*'
include 'com.google.common.primitives.*'
}
relocate('org.antlr.v4.runtime', 'graphql.org.antlr.v4.runtime')
dependencies {
include(dependency('com.google.guava:guava:' + guavaVersion))
include(dependency('org.antlr:antlr4-runtime:' + antlrVersion))
}
from "LICENSE.md"
from "src/main/antlr/Graphql.g4"
from "src/main/antlr/GraphqlOperation.g4"
from "src/main/antlr/GraphqlSDL.g4"
from "src/main/antlr/GraphqlCommon.g4"
manifest {
attributes('Automatic-Module-Name': 'com.graphqljava')
}
//Apply biz.aQute.bnd.builder plugin logic to shadowJar as in BndBuilderPlugin
convention.plugins.bundle = new aQute.bnd.gradle.BundleTaskConvention(it)
doLast {
//Call bnd after the ShadowJar was built to update the MANIFEST.MF
buildBundle()
}
//Configure bnd for shadowJar
// -exportcontents: graphql.* Adds all packages of graphql and below to the exported packages list
// -removeheaders: Private-Package Removes the MANIFEST.MF header Private-Package, which contains all the internal packages and
// also the repackaged packages like guava, which would be wrong after repackaging.
// Import-Package: Changes the imported packages header, to exclude guava and dependencies from the import list (! excludes packages)
// Guava was repackaged and included inside the jar, so we need to remove it.
// ANTLR was shaded, so we need to remove it.
// sun.misc is a JRE internal-only class that is not directly used by graphql-java. It was causing problems in libraries using graphql-java.
// The last ,* copies all the existing imports from the other dependencies, which is required.
bnd('''
-exportcontents: graphql.*
-removeheaders: Private-Package
Import-Package: !android.os.*,!com.google.*,!org.checkerframework.*,!javax.annotation.*,!graphql.com.google.*,!org.antlr.*,!graphql.org.antlr.*,!sun.misc.*,*
''')
}
task extractWithoutGuava(type: Copy) {
from({ zipTree({ "build/libs/graphql-java-${project.version}.jar" }) }) {
exclude('/com/**')
}
into layout.buildDirectory.dir("extract")
}
extractWithoutGuava.dependsOn jar
task buildNewJar(type: Jar) {
from layout.buildDirectory.dir("extract")
archiveFileName = "graphql-java-tmp.jar"
destinationDirectory = file("${project.buildDir}/libs")
manifest {
from file("build/extract/META-INF/MANIFEST.MF")
}
doLast {
delete("build/libs/graphql-java-${project.version}.jar")
file("build/libs/graphql-java-tmp.jar").renameTo(file("build/libs/graphql-java-${project.version}.jar"))
}
}
buildNewJar.dependsOn extractWithoutGuava
shadowJar.finalizedBy extractWithoutGuava, buildNewJar
task testng(type: Test) {
useTestNG()
}
check.dependsOn testng
compileJava {
options.compilerArgs += ["-parameters"]
source file("build/generated-src"), sourceSets.main.java
}
generateGrammarSource {
includes = ['Graphql.g4']
maxHeapSize = "64m"
arguments += ["-visitor"]
outputDirectory = file("${project.buildDir}/generated-src/antlr/main/graphql/parser/antlr")
}
generateGrammarSource.inputs
.dir('src/main/antlr')
.withPropertyName('sourceDir')
.withPathSensitivity(PathSensitivity.RELATIVE)
task sourcesJar(type: Jar) {
dependsOn classes
archiveClassifier = 'sources'
from sourceSets.main.allSource
}
task javadocJar(type: Jar, dependsOn: javadoc) {
archiveClassifier = 'javadoc'
from javadoc.destinationDir
}
javadoc {
options.encoding = 'UTF-8'
}
artifacts {
archives sourcesJar
archives javadocJar
}
List<TestDescriptor> failedTests = []
test {
testLogging {
events "FAILED", "SKIPPED"
exceptionFormat = "FULL"
}
afterTest { TestDescriptor descriptor, TestResult result ->
if (result.getFailedTestCount() > 0) {
failedTests.add(descriptor)
}
}
}
/*
* The gradle.buildFinished callback is deprecated BUT there does not seem to be a decent alternative in gradle 7
* So progress over perfection here
*
* See https://github.com/gradle/gradle/issues/20151
*/
gradle.buildFinished {
if (!failedTests.isEmpty()) {
println "\n\n"
println "============================"
println "These are the test failures"
println "============================"
for (td in failedTests) {
println "${td.getClassName()}.${td.getDisplayName()}"
}
println "============================"
}
}
allprojects {
tasks.withType(Javadoc) {
exclude('**/antlr/**')
}
}
publishing {
publications {
graphqlJava(MavenPublication) {
version version
from components.java
artifact sourcesJar {
archiveClassifier = "sources"
}
artifact javadocJar {
archiveClassifier = "javadoc"
}
pom.withXml {
// Removing antlr4 below (introduced in `1ac98bf`) addresses an issue with
// the Gradle ANTLR plugin. `1ac98bf` can be reverted and this comment removed once
// that issue is fixed and Gradle upgraded. See https://goo.gl/L92KiF and https://goo.gl/FY0PVR.
//
// Removing antlr4-runtime and guava because the classes we want to use are "shaded" into the jar itself
// via the shadowJar task
def pomNode = asNode()
pomNode.dependencies.'*'.findAll() {
it.artifactId.text() == 'antlr4' || it.artifactId.text() == 'antlr4-runtime' || it.artifactId.text() == 'guava'
}.each() {
it.parent().remove(it)
}
pomNode.children().last() + {
resolveStrategy = Closure.DELEGATE_FIRST
name 'graphql-java'
description 'GraphqL Java'
url "https://github.com/graphql-java/graphql-java"
scm {
url "https://github.com/graphql-java/graphql-java"
connection "https://github.com/graphql-java/graphql-java"
developerConnection "https://github.com/graphql-java/graphql-java"
}
licenses {
license {
name 'MIT'
url 'https://github.com/graphql-java/graphql-java/blob/master/LICENSE.md'
distribution 'repo'
}
}
developers {
developer {
id 'andimarek'
name 'Andreas Marek'
}
}
}
}
}
}
}
nexusPublishing {
repositories {
sonatype {
username = System.env.MAVEN_CENTRAL_USER
password = System.env.MAVEN_CENTRAL_PASSWORD
}
}
}
signing {
required { !project.hasProperty('publishToMavenLocal') }
def signingKey = System.env.MAVEN_CENTRAL_PGP_KEY
useInMemoryPgpKeys(signingKey, "")
sign publishing.publications
}
// all publish tasks depend on the build task
tasks.withType(PublishToMavenRepository) {
dependsOn build
}
// Only publish Maven POM, disable default Gradle modules file
tasks.withType(GenerateModuleMetadata) {
enabled = false
}
test {
useJUnitPlatform()
}