Skip to content

Commit

Permalink
up
Browse files Browse the repository at this point in the history
  • Loading branch information
elect86 committed Jan 11, 2018
1 parent f953c95 commit 9fb521b
Showing 1 changed file with 14 additions and 15 deletions.
29 changes: 14 additions & 15 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ dependencies {

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

compile 'com.github.kotlin-graphics:kotlin-unsigned:dbfc274f23fabf7e880347d84616a809f805afaf'
compile 'com.github.kotlin-graphics:kotlin-unsigned:64c8280bbd'

testCompile 'io.kotlintest:kotlintest:2.0.7'
}
Expand All @@ -43,18 +43,17 @@ allprojects {
}


task sourcesJar(type: Jar, dependsOn: classes) {
classifier = 'sources'
from sourceSets.main.allSource
}

task javadocJar(type: Jar, dependsOn: javadoc) {
classifier = 'javadoc'
from javadoc.destinationDir
}

//task sourcesJar(type: Jar, dependsOn: classes) {
// classifier = 'sources'
// from sourceSets.main.allSource
//}
//
//task javadocJar(type: Jar, dependsOn: javadoc) {
// classifier = 'javadoc'
// from javadoc.destinationDir
//}
//
//artifacts {
// archives sourcesJar
// archives javadocJar
//}
artifacts {
archives sourcesJar
archives javadocJar
}

0 comments on commit 9fb521b

Please sign in to comment.