File tree Expand file tree Collapse file tree 1 file changed +2
-16
lines changed Expand file tree Collapse file tree 1 file changed +2
-16
lines changed Original file line number Diff line number Diff line change @@ -41,23 +41,10 @@ buildscript {
41
41
tasks.withType<Jar > {
42
42
manifest {
43
43
attributes(mapOf (" Main-Class" to " org.ice1000.devkt.Main" ,
44
- " SplashScreen-Image" to " slpash .png" ))
44
+ " SplashScreen-Image" to " splash .png" ))
45
45
}
46
46
}
47
47
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
-
61
48
plugins {
62
49
java
63
50
kotlin(" jvm" ) version " 1.2.31"
@@ -96,7 +83,6 @@ repositories {
96
83
}
97
84
98
85
dependencies {
99
- compile (kotlin(" compiler-embeddable" , kotlinVersion))
86
+ compileOnly (kotlin(" compiler-embeddable" , kotlinVersion))
100
87
compileOnly(files(" lib/dev-kt-v1.2-SNAPSHOT.jar" ))
101
88
}
102
-
You can’t perform that action at this time.
0 commit comments