-
Notifications
You must be signed in to change notification settings - Fork 74
/
Copy pathbuild.gradle
59 lines (45 loc) · 1.06 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
plugins {
id "org.jetbrains.kotlin.jvm" apply false
id "io.spring.nohttp" version "0.0.10"
}
description = "${projectName} build"
defaultTasks "build"
ext {
javaProjects = subprojects
}
nohttp {
allowlistFile = project.file("src/nohttp/whitelist.lines")
source.exclude "**/bin/**"
source.exclude "**/build/**"
source.exclude "**/out/**"
source.exclude "**/target/**"
source.exclude "**/frontend/**"
}
task build {
dependsOn checkstyleNohttp
}
configure([rootProject] + javaProjects) { project ->
group "${groupId}"
repositories {
mavenCentral()
}
configurations.all {
resolutionStrategy {
cacheChangingModulesFor 0, "seconds"
cacheDynamicVersionsFor 0, "seconds"
}
}
}
configure(javaProjects) { project ->
apply plugin: "java-library"
apply plugin: "io.easybest.gradle.plugin.conventions"
apply plugin: "io.easybest.gradle.plugin.deployed"
apply plugin: "io.easybest.gradle.plugin.optional-dependencies"
sourceCompatibility = 1.8
targetCompatibility = 1.8
java {
toolchain {
languageVersion = JavaLanguageVersion.of(8)
}
}
}