Skip to content

Commit

Permalink
add tasks to build.gradle
Browse files Browse the repository at this point in the history
  • Loading branch information
yito88 committed May 29, 2020
1 parent b6f3f4e commit 5bbdd1b
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,16 @@ dependencies {
testImplementation group: 'org.mockito', name: 'mockito-core', version: '3.2.4'
}

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

task javadocJar(type: Jar) {
classifier = 'javadoc'
from javadoc
}

sourceCompatibility = 1.8
targetCompatibility = 1.8

Expand Down

0 comments on commit 5bbdd1b

Please sign in to comment.