-
Notifications
You must be signed in to change notification settings - Fork 97
/
build.gradle
172 lines (149 loc) · 5.09 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
import aQute.bnd.gradle.Bundle
import io.github.gradlenexus.publishplugin.NexusRepository
buildscript {
repositories {
mavenCentral()
}
dependencies {
classpath 'biz.aQute.bnd:biz.aQute.bnd.gradle:6.4.0'
classpath "org.jfrog.buildinfo:build-info-extractor-gradle:latest.release"
}
}
plugins {
id 'net.researchgate.release' version '3.0.2'
id 'com.github.hierynomus.license' version '0.16.1'
id 'maven-publish'
id 'signing'
id "io.github.gradle-nexus.publish-plugin" version "1.3.0"
}
apply plugin: 'java'
apply plugin: 'idea'
apply plugin: 'biz.aQute.bnd.builder'
apply plugin: 'maven-publish'
// custom tasks for creating source/javadoc jars
tasks.register('sourcesJar', Jar) {
dependsOn classes
archiveClassifier = 'sources'
from sourceSets.main.allSource
}
tasks.register('javadocJar', Jar) {
dependsOn javadoc
archiveClassifier = 'javadoc'
from javadoc.destinationDir
}
release {
tagTemplate = 'v${version}'
failOnPublishNeeded = false
failOnCommitNeeded = false
}
repositories {
mavenCentral()
}
gradle.projectsEvaluated {
tasks.withType(JavaCompile).tap {
configureEach {
doLast {
options.compilerArgs += "-parameters"
}
}
}
}
dependencies {
implementation 'javax.validation:validation-api:1.1.0.Final'
implementation 'com.graphql-java:graphql-java:21.5'
implementation 'com.graphql-java:graphql-java-extended-scalars:21.0'
implementation 'javax.xml.bind:jaxb-api:2.3.1'
// OSGi
compileOnly 'org.osgi:org.osgi.core:6.0.0'
compileOnly 'org.osgi:org.osgi.service.cm:1.5.0'
compileOnly 'org.osgi:org.osgi.service.component:1.3.0'
compileOnly 'biz.aQute.bnd:biz.aQute.bndlib:3.2.0'
testImplementation 'org.testng:testng:7.5.1'
testImplementation 'org.hamcrest:hamcrest-all:1.3'
testImplementation 'org.mockito:mockito-core:2.+'
}
test.useTestNG()
publishing {
publications {
maven(MavenPublication) {
from components.java
groupId 'io.github.graphql-java'
artifactId project.name
version project.version
artifact sourcesJar
artifact javadocJar
pom.withXml {
asNode().children().last() + {
resolveStrategy = Closure.DELEGATE_FIRST
name 'graphql-java-annotations'
description 'Annotations-based syntax for GraphQL schema definition'
url 'https://github.com/graphql-java/graphql-java-annotations'
inceptionYear '2016'
scm {
url 'https://github.com/graphql-java/graphql-java-annotations'
connection 'scm:https://[email protected]/graphql-java/graphql-java-annotations.git'
developerConnection 'scm:git://github.com/graphql-java/graphql-java-annotations.git'
}
licenses {
license {
name 'The Apache Software License, Version 2.0'
url 'http://www.apache.org/licenses/LICENSE-2.0.txt'
distribution 'repo'
}
}
developers {
developer {
id 'yrashk'
name 'Yurii Rashkovskii'
email '[email protected]'
}
developer {
id 'apottere'
name 'Andrew Potter'
email '[email protected]'
}
developer {
id 'bbakerman'
name 'Brad Baker'
email '[email protected]'
}
developer {
id 'yarinvak'
name 'Yarin Vaknin'
email '[email protected]'
}
developer {
id 'guy120494'
name 'Guy Smorodinsky'
}
developer {
id 'osher-sade'
name 'Osher Sade'
}
}
}
}
}
}
}
afterReleaseBuild.dependsOn nexusPublishing
nexusPublishing {
repositories {
sonatype {
username = System.getenv("MAVEN_CENTRAL_USERTOKEN_USERNAME")
password = System.getenv("MAVEN_CENTRAL_USERTOKEN_PASSWORD")
}
}
}
// to publish to local maven repo skip signing: ./gradlew publishToMavenLocal -x signGraphqlJavaPublication
signing {
def signingKey = System.getenv("MAVEN_CENTRAL_PGP_KEY")
useInMemoryPgpKeys(signingKey, "")
sign publishing.publications
}
tasks.register('bundle', Bundle) {
from sourceSets.main.output
}
wrapper {
gradleVersion = '8.3'
}