-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle.kts
More file actions
53 lines (46 loc) · 1.16 KB
/
build.gradle.kts
File metadata and controls
53 lines (46 loc) · 1.16 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
51
52
53
plugins {
java
idea
id("com.github.ben-manes.versions") version "0.52.0" // ./gradlew dependencyUpdates
}
group = "dev.robocode"
version = "0.3.1"
repositories {
mavenCentral()
}
dependencies {
implementation(project(":robocode-api"))
implementation("org.apache.bcel:bcel:6.10.0")
}
java {
toolchain {
languageVersion.set(JavaLanguageVersion.of(11))
}
}
tasks {
// Remove the default jar task
named<Jar>("jar") {
enabled = false
}
val fatJar = register<Jar>("fatJar") {
dependsOn.addAll(
listOf(
"compileJava",
"processResources"
)
)
// We need this for Gradle optimization to work
duplicatesStrategy = DuplicatesStrategy.EXCLUDE
manifest {
attributes["Main-Class"] = "Main"
}
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
}
}