Skip to content

Commit 4908658

Browse files
committed
up to 1.1.2 eap 77
added sources
1 parent 554d85d commit 4908658

File tree

2 files changed

+11
-4
lines changed

2 files changed

+11
-4
lines changed

build.gradle

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ apply plugin: 'kotlin'
33

44
buildscript {
55

6-
ext.kotlinVersion = '1.1.2-eap-73'
6+
ext.kotlinVersion = '1.1.2-eap-77'
77

88
repositories {
99
mavenCentral()
@@ -25,4 +25,11 @@ repositories {
2525
mavenCentral()
2626
maven { url "https://jitpack.io" }
2727
maven { url "https://dl.bintray.com/kotlin/kotlin-dev" }
28-
}
28+
}
29+
30+
task packageSources(type: Jar, dependsOn: 'classes') {
31+
from sourceSets.main.allSource
32+
classifier = 'sources'
33+
}
34+
35+
artifacts { archives packageSources }
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
#Thu Apr 20 10:57:07 CEST 2017
1+
#Mon Apr 24 21:43:44 CEST 2017
22
distributionBase=GRADLE_USER_HOME
33
distributionPath=wrapper/dists
44
zipStoreBase=GRADLE_USER_HOME
55
zipStorePath=wrapper/dists
6-
distributionUrl=https\://services.gradle.org/distributions/gradle-3.5-bin.zip
6+
distributionUrl=https\://services.gradle.org/distributions/gradle-3.5-all.zip

0 commit comments

Comments
 (0)