-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle.kts
81 lines (69 loc) · 1.78 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
69
70
71
72
73
74
75
76
77
78
79
80
81
plugins {
java
idea
`maven-publish`
id("com.diffplug.spotless") version Versions.gradleSpotlessPlugin
id("com.gorylenko.gradle-git-properties") version Versions.gradleGitPropertiesPlugin apply false
}
val javaVersion = 16
java {
toolchain {
languageVersion.set(JavaLanguageVersion.of(javaVersion))
}
}
allprojects {
apply(plugin = "idea")
apply(plugin = "com.diffplug.spotless")
apply(from = "${project.rootDir}/gradle/dependencyUpdates.gradle.kts")
// FIXME replace with your company's package
group = "com.tailrocks.example"
idea {
module {
isDownloadJavadoc = false
isDownloadSources = false
}
}
spotless {
java {
licenseHeaderFile("$rootDir/gradle/licenseHeader.txt")
removeUnusedImports()
trimTrailingWhitespace()
endWithNewline()
}
kotlin {
licenseHeaderFile("$rootDir/gradle/licenseHeader.txt")
}
kotlinGradle {
ktlint()
}
}
tasks.withType<JavaCompile> {
if (javaVersion >= 9) {
options.release.set(javaVersion)
}
}
}
subprojects {
apply(plugin = "java")
java {
toolchain {
languageVersion.set(JavaLanguageVersion.of(javaVersion))
}
withJavadocJar()
withSourcesJar()
}
plugins.withId("maven-publish") {
publishing {
publications {
create<MavenPublication>("mavenJava") {
from(components["java"])
versionMapping {
allVariants {
fromResolutionResult()
}
}
}
}
}
}
}