Skip to content

Commit

Permalink
release 2.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
shalousun committed Dec 19, 2020
1 parent bd7566a commit 98aefff
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ plugins {
}

group 'com.github.shalousun'
version '2.0.0-release'
version '2.0.1'

sourceCompatibility = 1.8

Expand All @@ -31,19 +31,19 @@ repositories {

dependencies {
testCompile group: 'junit', name: 'junit', version: '4.13.1'
compile 'com.github.shalousun:smart-doc:2.0.0'
compile 'com.github.shalousun:smart-doc:2.0.1'
}
tasks.withType(JavaCompile) {
options.encoding = "UTF-8"
}

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

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

Expand Down

0 comments on commit 98aefff

Please sign in to comment.