forked from josmbd/highwayNameModificationJOSMPlugin
-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.gradle
220 lines (200 loc) · 5.36 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
plugins {
id "com.diffplug.spotless" version "6.11.0"
id "com.github.ben-manes.versions" version "0.44.0"
id "com.github.spotbugs" version "5.0.13"
// id "de.aaschmid.cpd" version "3.3"
id "eclipse"
id "jacoco"
id "java"
id "maven-publish"
id "net.ltgt.errorprone" version "3.0.1"
id "org.openstreetmap.josm" version "0.8.2"
id "pmd"
}
archivesBaseName = "highwayNameModification"
def gitlabGroup = "gokaart"
def gitlabRepositoryName = "JOSM_highwayNameModification"
repositories {
mavenCentral()
maven {
url "https://josm.openstreetmap.de/nexus/content/repositories/releases/"
}
}
def versions = [
awaitility: "4.2.0",
// Errorprone 2.11 requires Java 11+
errorprone: (JavaVersion.toVersion(getJavaVersion()) >= JavaVersion.VERSION_11) ? "2.16.0" : "2.10.0",
findsecbugs: "1.12.0",
jacoco: "0.8.7",
jmockit: "1.49.a",
junit: "5.9.1",
pmd: "6.20.0",
spotbugs: "4.7.3",
wiremock: "2.35.0",
]
dependencies {
if (!JavaVersion.toVersion(getJavaVersion()).isJava9Compatible()) {
errorproneJavac("com.google.errorprone:javac:9+181-r4173-1")
}
spotbugsPlugins "com.h3xstream.findsecbugs:findsecbugs-plugin:${versions.findsecbugs}"
errorprone("com.google.errorprone:error_prone_core:${versions.errorprone}")
testImplementation("org.junit.jupiter:junit-jupiter-api:${versions.junit}")
testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine:${versions.junit}")
testImplementation("org.junit.vintage:junit-vintage-engine:${versions.junit}")
testImplementation("org.jmockit:jmockit:${versions.jmockit}")
testImplementation("com.github.spotbugs:spotbugs-annotations:${versions.spotbugs}")
testImplementation("org.openstreetmap.josm:josm-unittest:"){changing=true}
testImplementation("com.github.tomakehurst:wiremock-jre8:${versions.wiremock}")
testImplementation("org.awaitility:awaitility:${versions.awaitility}")
}
int getJavaVersion() {
// We want to use whatever Java version CI has as default
def ci = project.hasProperty("isCI") or project.hasProperty("CI") or System.getenv("CI") != null
// But we want to override if someone set a specific Java version
def javaVersion = System.getenv("JAVA_VERSION")?.isInteger() ? Integer.valueOf(System.getenv("JAVA_VERSION")) : null
if (javaVersion != null) {
return javaVersion
}
if (ci) {
return Integer.valueOf(JavaVersion.current().getMajorVersion())
}
return 8
}
logger.lifecycle("Using Java " + getJavaVersion())
java {
toolchain {
languageVersion.set(JavaLanguageVersion.of(getJavaVersion()))
}
}
// Set up Errorprone
tasks.withType(JavaCompile).configureEach {
options.errorprone {
error(
"ClassCanBeStatic",
"DefaultCharset",
"ReferenceEquality",
"WildcardImport"
)
warn(
"ConstantField",
"FieldCanBeFinal",
"LambdaFunctionalInterface",
"MethodCanBeStatic",
"MultiVariableDeclaration",
"PrivateConstructorForUtilityClass",
"RemoveUnusedImports",
"UngroupedOverloads"
)
}
}
sourceSets {
test {
java {
srcDirs = ["test/unit"]
}
resources {
srcDirs = ["test/data"]
}
}
}
test {
project.afterEvaluate {
jvmArgs("-javaagent:${classpath.find { it.name.contains("jmockit") }.absolutePath}")
}
useJUnitPlatform()
testLogging {
exceptionFormat "full"
events "skipped", "failed"
info {
showStandardStreams true
}
}
}
tasks.processResources {
from("$projectDir/LICENSE")
from("$projectDir/README.md")
from("$projectDir/src/resources")
from("$projectDir/src/main/resources")
}
spotless {
java {
eclipse().configFile "config/josm_formatting.xml"
endWithNewline()
importOrder('javax', 'java', 'org', 'com', '')
indentWithSpaces(4)
licenseHeader "// License: GPL. For details, see LICENSE file."
ratchetFrom("origin/master")
removeUnusedImports()
trimTrailingWhitespace()
}
}
josm {
manifest {
}
i18n {
pathTransformer = getPathTransformer(project.projectDir, "gitlab.com/${gitlabGroup}/${gitlabRepositoryName}/blob")
}
}
tasks.withType(JavaCompile) {
options.compilerArgs += [
"-Xlint:all",
"-Xlint:-serial",
]
}
// Set up JaCoCo
jacoco {
toolVersion = "${versions.jacoco}"
}
jacocoTestReport {
dependsOn test
reports {
xml.required.set(true)
html.required.set(true)
}
}
check.dependsOn jacocoTestReport
// Set up PMD
pmd {
toolVersion = versions.pmd
ignoreFailures true
incrementalAnalysis = true
ruleSets = []
ruleSetConfig = resources.text.fromFile("$projectDir/config/pmd/ruleset.xml")
sourceSets = [sourceSets.main]
}
// Set up SpotBugs
spotbugs {
toolVersion = versions.spotbugs
ignoreFailures = true
}
spotbugsMain {
reports {
xml.required.set(false)
html.required.set(true)
}
}
publishing {
publications {
maven(MavenPublication) {
groupId = "org.openstreetmap.josm.plugins"
artifactId = archivesBaseName
version = project.version
from components.java
}
}
}
def ciJobToken = System.getenv("CI_JOB_TOKEN")
def projectId = System.getenv("CI_PROJECT_ID")
if (ciJobToken != null && projectId!= null) {
publishing.repositories.maven {
url = "https://gitlab.com/api/v4/projects/$projectId/packages/maven"
name = "gitlab"
credentials(HttpHeaderCredentials.class) {
name = "Job-Token"
value = ciJobToken
}
authentication {
create("auth", HttpHeaderAuthentication.class)
}
}
}