Skip to content

Commit 35b75d2

Browse files
committed
Finished
1 parent 886a899 commit 35b75d2

File tree

1 file changed

+2
-16
lines changed

1 file changed

+2
-16
lines changed

build.gradle.kts

Lines changed: 2 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -41,23 +41,10 @@ buildscript {
4141
tasks.withType<Jar> {
4242
manifest {
4343
attributes(mapOf("Main-Class" to "org.ice1000.devkt.Main",
44-
"SplashScreen-Image" to "slpash.png"))
44+
"SplashScreen-Image" to "splash.png"))
4545
}
4646
}
4747

48-
val fatJar = task<Jar>("fatJar") {
49-
classifier = "all"
50-
description = "Assembles a jar archive containing the main classes and all the dependencies."
51-
group = "build"
52-
from(Callable {
53-
configurations.compile.map {
54-
@Suppress("IMPLICIT_CAST_TO_ANY")
55-
if (it.isDirectory) it else zipTree(it)
56-
}
57-
})
58-
with(tasks["jar"] as Jar)
59-
}
60-
6148
plugins {
6249
java
6350
kotlin("jvm") version "1.2.31"
@@ -96,7 +83,6 @@ repositories {
9683
}
9784

9885
dependencies {
99-
compile(kotlin("compiler-embeddable", kotlinVersion))
86+
compileOnly(kotlin("compiler-embeddable", kotlinVersion))
10087
compileOnly(files("lib/dev-kt-v1.2-SNAPSHOT.jar"))
10188
}
102-

0 commit comments

Comments
 (0)