Skip to content

Commit

Permalink
prepare for release 2.0.0-RC1
Browse files Browse the repository at this point in the history
  • Loading branch information
FilipJirsak committed Jul 8, 2015
1 parent 8221b4a commit 17fa879
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 3 deletions.
22 changes: 21 additions & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -34,10 +34,30 @@ dependencies {
)
}

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

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

artifacts {
archives sourcesJar
archives javadocJar
}

javadoc {
options.encoding = 'UTF-8'
options.charSet = options.encoding
}

test {
useTestNG()
}

task wrapper(type: Wrapper) {
gradleVersion = '2.4'
gradleVersion = '2.5'
}
4 changes: 2 additions & 2 deletions gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#Thu Jul 02 13:50:26 CEST 2015
#Wed Jul 08 14:25:52 CEST 2015
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-2.4-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-2.5-bin.zip

0 comments on commit 17fa879

Please sign in to comment.