Skip to content

Commit

Permalink
fix javadoc generation
Browse files Browse the repository at this point in the history
  • Loading branch information
pmarschik committed Sep 4, 2019
1 parent 86fbb4e commit d958501
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ plugins {
}

group = "com.ixopay"
version = "2.1"
version = "2.1.1"

sourceCompatibility = 1.8
targetCompatibility = 1.8
Expand Down Expand Up @@ -57,7 +57,7 @@ task sourcesJar(type: Jar) {
from(sourceSets.main.allSource)
}

task javadocJar(type: Jar) {
task javadocJar(type: Jar, dependsOn: javadoc) {
archiveClassifier.set('javadoc')
from(javadoc.destinationDir)
}
Expand Down

0 comments on commit d958501

Please sign in to comment.