Skip to content

Commit

Permalink
Fix library packing.
Browse files Browse the repository at this point in the history
  • Loading branch information
Emerson Lin authored and Emerson Lin committed Mar 29, 2018
1 parent 119436b commit fa69b74
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
buildscript {
ext {
android_gradle_version = '3.2.0-alpha07'
dokka_version = '0.9.14'
dokka_version = '0.9.13'
kotlin_version = '1.2.31'
}
repositories {
Expand Down Expand Up @@ -72,4 +72,5 @@ dependencies {
task dokkaJavadoc(type: org.jetbrains.dokka.gradle.DokkaTask) {
outputFormat = 'javadoc'
outputDirectory = "$buildDir/dokkaJavadoc"
sourceDirs = files('src/main/kotlin')
}
2 changes: 1 addition & 1 deletion maven.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ afterEvaluate { project ->

task sourcesJar(type: Jar) {
classifier = 'sources'
from android.sourceSets.main.java.sourceFiles
from fileTree(dir: 'src/main/kotlin')
}

artifacts {
Expand Down

0 comments on commit fa69b74

Please sign in to comment.