Skip to content
This repository has been archived by the owner on Aug 9, 2020. It is now read-only.

Commit

Permalink
Merge pull request #40 from VictorAlbertos/decouple_gson
Browse files Browse the repository at this point in the history
prevent build failing because of javadoc task
  • Loading branch information
VictorAlbertos authored Jun 18, 2016
2 parents e2c91b2 + b3453e0 commit 113cc69
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions core/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,10 @@ task sourcesJar(type: Jar, dependsOn: classes) {
from sourceSets.main.allSource
}

javadoc {
failOnError = false
}

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

0 comments on commit 113cc69

Please sign in to comment.