File tree Expand file tree Collapse file tree 1 file changed +14
-15
lines changed Expand file tree Collapse file tree 1 file changed +14
-15
lines changed Original file line number Diff line number Diff 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:dbfc274f23fabf7e880347d84616a809f805afaf '
29+ compile ' com.github.kotlin-graphics:kotlin-unsigned:64c8280bbd '
3030
3131 testCompile ' io.kotlintest:kotlintest:2.0.7'
3232}
@@ -43,18 +43,17 @@ allprojects {
4343}
4444
4545
46+ task sourcesJar (type : Jar , dependsOn : classes) {
47+ classifier = ' sources'
48+ from sourceSets. main. allSource
49+ }
50+
51+ task javadocJar (type : Jar , dependsOn : javadoc) {
52+ classifier = ' javadoc'
53+ from javadoc. destinationDir
54+ }
4655
47- // task sourcesJar(type: Jar, dependsOn: classes) {
48- // classifier = 'sources'
49- // from sourceSets.main.allSource
50- // }
51- //
52- // task javadocJar(type: Jar, dependsOn: javadoc) {
53- // classifier = 'javadoc'
54- // from javadoc.destinationDir
55- // }
56- //
57- // artifacts {
58- // archives sourcesJar
59- // archives javadocJar
60- // }
56+ artifacts {
57+ archives sourcesJar
58+ archives javadocJar
59+ }
You can’t perform that action at this time.
0 commit comments