forked from zaproxy/zap-extensions
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle.kts
68 lines (58 loc) · 1.86 KB
/
build.gradle.kts
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
import net.ltgt.gradle.errorprone.errorprone
plugins {
id("com.diffplug.spotless")
id("com.github.ben-manes.versions") version "0.39.0"
id("org.sonarqube") version "3.3"
id("net.ltgt.errorprone") version "2.0.2"
}
apply(from = "$rootDir/gradle/ci.gradle.kts")
apply(from = "$rootDir/gradle/lgtm.gradle.kts")
allprojects {
apply(plugin = "com.diffplug.spotless")
apply(plugin = "com.github.ben-manes.versions")
apply(plugin = "net.ltgt.errorprone")
repositories {
mavenCentral()
}
spotless {
kotlinGradle {
ktlint()
}
project.plugins.withType(JavaPlugin::class) {
java {
licenseHeaderFile("$rootDir/gradle/spotless/license.java")
googleJavaFormatAosp()
}
}
}
project.plugins.withType(JavaPlugin::class) {
dependencies {
"errorprone"("com.google.errorprone:error_prone_core:2.9.0")
// When building ZAP releases it's also used Java 8.
if (JavaVersion.current() == JavaVersion.VERSION_1_8 || System.getenv("ZAP_RELEASE") != null) {
"errorproneJavac"("com.google.errorprone:javac:9+181-r4173-1")
}
}
}
tasks.withType<JavaCompile>().configureEach {
options.encoding = "utf-8"
options.compilerArgs = listOf("-Xlint:all", "-Xlint:-path", "-Xlint:-options", "-Werror")
options.errorprone {
disableAllChecks.set(true)
error(
"MissingOverride",
"WildcardImport"
)
}
}
tasks.withType<Test>().configureEach {
useJUnitPlatform()
}
}
sonarqube {
properties {
property("sonar.projectKey", "zaproxy_zap-extensions")
property("sonar.organization", "zaproxy")
property("sonar.host.url", "https://sonarcloud.io")
}
}