File tree Expand file tree Collapse file tree 2 files changed +8
-3
lines changed Expand file tree Collapse file tree 2 files changed +8
-3
lines changed Original file line number Diff line number Diff line change 11buildscript {
2- ext. kotlin_version = ' 1.1.4-3 '
2+ ext. kotlin_version = ' 1.3.10 '
33 repositories {
44 mavenCentral()
55 }
@@ -25,6 +25,11 @@ dependencies {
2525 testCompile " org.jetbrains.kotlin:kotlin-test-junit:$kotlin_version "
2626}
2727
28+ jar {
29+ manifest { attributes ' Main-Class' : ' demo.HelloWorldKt' }
30+ from { configurations. compile. collect { it. isDirectory() ? it : zipTree(it) } }
31+ }
32+
2833task wrapper (type : Wrapper ) {
29- gradleVersion = " 4.1 "
34+ gradleVersion = " 4.10.2 "
3035}
Original file line number Diff line number Diff line change @@ -3,4 +3,4 @@ distributionBase=GRADLE_USER_HOME
33distributionPath =wrapper/dists
44zipStoreBase =GRADLE_USER_HOME
55zipStorePath =wrapper/dists
6- distributionUrl =https\://services.gradle.org/distributions/gradle-4.1 -all.zip
6+ distributionUrl =https\://services.gradle.org/distributions/gradle-4.10 -all.zip
You can’t perform that action at this time.
0 commit comments