forked from java-json-tools/json-patch
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathbuild.gradle
More file actions
208 lines (189 loc) · 6.17 KB
/
build.gradle
File metadata and controls
208 lines (189 loc) · 6.17 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
/*
* Copyright (c) 2014, Francis Galiegue (fgaliegue@gmail.com)
*
* This software is dual-licensed under:
*
* - the Lesser General Public License (LGPL) version 3.0 or, at your option, any
* later version;
* - the Apache Software License (ASL) version 2.0.
*
* The text of this file and of both licenses is available at the root of this
* project or, if you have the jar distribution, in directory META-INF/, under
* the names LGPL-3.0.txt and ASL-2.0.txt respectively.
*
* Direct link to the sources:
*
* - LGPL 3.0: https://www.gnu.org/licenses/lgpl-3.0.txt
* - ASL 2.0: http://www.apache.org/licenses/LICENSE-2.0.txt
*/
buildscript {
repositories {
mavenCentral()
}
dependencies {
classpath 'biz.aQute.bnd:biz.aQute.bnd.gradle:4.2.0'
classpath 'org.owasp:dependency-check-gradle:8.2.1'
}
};
plugins {
id("net.ltgt.errorprone") version "3.0.1" apply false
id "org.sonarqube" version "4.2.1.3168"
id "jacoco"
id "io.github.gradle-nexus.publish-plugin" version "2.0.0-rc-2"
}
apply(plugin: "java-library");
apply(plugin: "maven-publish");
apply(plugin: "signing");
apply(plugin: "biz.aQute.bnd.builder");
apply(plugin: "net.ltgt.errorprone");
apply(plugin: 'org.owasp.dependencycheck');
apply(plugin: 'java-library')
apply(from: "project.gradle");
group = "com.gravity9";
/*
* Repositories to use
*/
repositories {
mavenCentral();
}
/*
* Add errorprone checking.
*/
dependencies {
errorprone('com.google.errorprone:error_prone_core:2.20.0')
}
/*
* Necessary! Otherwise TestNG will not be used...
*
*/
test {
useTestNG() {
useDefaultListeners = true;
};
finalizedBy jacocoTestReport // report is always generated after tests run
}
jacocoTestReport {
dependsOn test // tests are required to run before generating the report
}
/*
* Necessary to generate the source and javadoc jars
*/
task sourcesJar(type: Jar, dependsOn: classes) {
from sourceSets.main.allSource;
archiveClassifier.set("sources");
}
/*
* Lint all the things!
*/
allprojects {
gradle.projectsEvaluated {
tasks.withType(JavaCompile) {
options.compilerArgs << "-Xlint:all" << "-Xlint:-serial" << "-Werror"
}
tasks.withType(Javadoc) {
options.addStringOption('Xwerror', '-quiet')
}
}
}
task javadocJar(type: Jar, dependsOn: javadoc) {
from javadoc.destinationDir;
archiveClassifier.set("javadoc");
}
artifacts {
archives jar;
archives sourcesJar;
archives javadocJar;
}
jacocoTestReport{
reports {
xml.enabled true
html.enabled true
}
}
wrapper {
gradleVersion = "7.6.1";
distributionUrl = "https://services.gradle.org/distributions/gradle-${gradleVersion}-all.zip";
}
java {
withJavadocJar()
withSourcesJar()
}
publishing {
publications {
mavenJava(MavenPublication) {
artifactId = 'json-patch-path'
from components.java
pom {
name = 'json-patch-path'
description = 'JSON Patch (RFC 6902) and JSON Merge Patch (RFC 7386) implementation in Java, using extended TMF620 JsonPath syntax'
url = 'https://github.com/gravity9-tech/json-patch'
licenses {
license {
name = 'The Apache License, Version 2.0'
url = 'http://www.apache.org/licenses/LICENSE-2.0.txt'
}
}
developers {
developer {
id = 'Piotr-Dytkowski'
name = 'Piotr Dytkowski'
email = 'piotr.dytkowski@gravity9.com'
organization = 'gravity9'
organizationUrl = 'https://www.gravity9.com/'
}
developer {
id = 'Bartlomiej-Styczynski'
name = 'Bartlomiej Styczynski'
email = 'bartlomiej.styczynski@gravity9.com'
organization = 'gravity9'
organizationUrl = 'https://www.gravity9.com/'
}
developer {
id = 'Piotr-Bugara'
name = 'Piotr Bugara'
email = 'piotr.bugara@gravity9.com'
organization = 'gravity9'
organizationUrl = 'https://www.gravity9.com/'
}
developer {
id = 'Garry-Newball'
name = 'Garry Newball'
email = 'garry.newball@gravity9.com'
organization = 'gravity9'
organizationUrl = 'https://www.gravity9.com/'
}
developer {
id = 'Mateusz-Zaremba'
name = 'Mateusz Zaremba'
email = 'mateusz.zaremba@gravity9.com'
organization = 'gravity9'
organizationUrl = 'https://www.gravity9.com/'
}
}
scm {
connection = 'scm:git:https://github.com/java-json-tools/json-patch.git'
developerConnection = 'scm:git:ssh://github.com:java-json-tools/json-patch.git'
url = 'https://github.com/gravity9-tech/json-patch'
}
}
}
}
}
nexusPublishing {
repositories {
sonatype { //only for users registered in Sonatype after 24 Feb 2021
nexusUrl.set(uri("https://s01.oss.sonatype.org/service/local/"))
snapshotRepositoryUrl.set(uri("https://s01.oss.sonatype.org/content/repositories/snapshots/"))
username = System.getenv("OSSRH_USERNAME")
password = System.getenv("OSSRH_PASSWORD")
}
}
}
signing {
required { gradle.taskGraph.hasTask("publish") }
def signingKeyId = System.getenv("SIGNING_KEY_ID")
def signingKey = System.getenv("SIGNING_KEY")
def signingPassword = System.getenv("SIGNING_PASSWORD")
useInMemoryPgpKeys(signingKeyId, signingKey, signingPassword)
sign publishing.publications.mavenJava
}