Skip to content

Commit

Permalink
Merge pull request #5 from button/jon/update-bintray-upload-script
Browse files Browse the repository at this point in the history
Updated bintrayUpload task to include javadoc jar
  • Loading branch information
Jon6193 committed Aug 1, 2018
2 parents b14a3e3 + 1648904 commit e684c22
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion button-merchant/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ configurations {
classpaths
}

task javadocJar(type: Jar, dependsOn: "generateProductionJavadoc") {
task javadocJar(type: Jar, dependsOn: "generateReleaseJavadoc") {
classifier = 'javadoc'
from new File(project(':button-merchant').buildDir, "/docs/javadoc/")
}
Expand Down Expand Up @@ -140,6 +140,10 @@ bintray {
}
}

artifacts {
archives javadocJar
}

coveralls {
jacocoReportPath = "${buildDir}/reports/jacoco/jacocoTestDebugUnitTestReport/jacocoTestDebugUnitTestReport.xml"
}
Expand Down

0 comments on commit e684c22

Please sign in to comment.