-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle.kts
More file actions
50 lines (47 loc) · 1.77 KB
/
Copy pathbuild.gradle.kts
File metadata and controls
50 lines (47 loc) · 1.77 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
plugins {
application
java
}
// FYI: project group is not used anywhere.
project.group = "org.github.eirnym.palantir"
project.version = project.libs.palantir.orNull?.version ?: "1.0.0"
application {
mainClass.set("com.palantir.javaformat.java.Main")
}
tasks {
val fatJar = register<Jar>("fatJar") {
dependsOn.addAll(
listOf("compileJava", "processResources"),
) // We need this for Gradle optimization to work
archiveClassifier.set("standalone") // Naming the jar
duplicatesStrategy = DuplicatesStrategy.EXCLUDE
manifest {
attributes(
mapOf(
"Main-Class" to application.mainClass,
"Implementation-Version" to project.libs.palantir.orNull?.version,
"Add-Exports" to arrayOf(
"jdk.compiler/com.sun.tools.javac.file",
"jdk.compiler/com.sun.tools.javac.main",
"jdk.compiler/com.sun.tools.javac.parser",
"jdk.compiler/com.sun.tools.javac.tree",
"jdk.compiler/com.sun.tools.javac.util",
"jdk.compiler/com.sun.tools.javac.code",
"jdk.compiler/com.sun.tools.javac.api",
).joinToString(" "),
),
)
} // Provided we set it up in the application plugin configuration
val sourcesMain = sourceSets.main.get()
val contents = configurations.runtimeClasspath.get()
.map { if (it.isDirectory) it else zipTree(it) } +
sourcesMain.output
from(contents)
}
build {
dependsOn(fatJar) // Trigger fat jar creation during build
}
}
dependencies {
implementation(libs.palantir)
}