Skip to content

Commit 36601c9

Browse files
committed
up
1 parent 63468a9 commit 36601c9

File tree

1 file changed

+14
-4
lines changed

1 file changed

+14
-4
lines changed

build.gradle

Lines changed: 14 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ dependencies {
2626

2727
compile "org.jetbrains.kotlin:kotlin-stdlib:$kotlinVersion"
2828

29-
compile 'com.github.kotlin-graphics:kotlin-unsigned:f51c2a5cca312c75aa35c4243ffa49002e727ae6'
29+
compile 'com.github.kotlin-graphics:kotlin-unsigned:22bba94de0'
3030

3131
testCompile 'io.kotlintest:kotlintest:2.0.7'
3232
}
@@ -42,9 +42,19 @@ allprojects {
4242
targetCompatibility = 1.7
4343
}
4444

45-
task packageSources(type: Jar, dependsOn: 'classes') {
46-
from sourceSets.main.allSource
45+
46+
47+
task sourcesJar(type: Jar, dependsOn: classes) {
4748
classifier = 'sources'
49+
from sourceSets.main.allSource
50+
}
51+
52+
task javadocJar(type: Jar, dependsOn: javadoc) {
53+
classifier = 'javadoc'
54+
from javadoc.destinationDir
4855
}
4956

50-
artifacts { archives packageSources }
57+
artifacts {
58+
archives sourcesJar
59+
archives javadocJar
60+
}

0 commit comments

Comments
 (0)