Skip to content

Commit 17fa879

Browse files
committed
prepare for release 2.0.0-RC1
1 parent 8221b4a commit 17fa879

File tree

2 files changed

+23
-3
lines changed

2 files changed

+23
-3
lines changed

build.gradle

Lines changed: 21 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,10 +34,30 @@ dependencies {
3434
)
3535
}
3636

37+
task sourcesJar(type: Jar, dependsOn: classes) {
38+
classifier = 'sources'
39+
from sourceSets.main.allSource
40+
}
41+
42+
task javadocJar(type: Jar, dependsOn: javadoc) {
43+
classifier = 'javadoc'
44+
from javadoc.destinationDir
45+
}
46+
47+
artifacts {
48+
archives sourcesJar
49+
archives javadocJar
50+
}
51+
52+
javadoc {
53+
options.encoding = 'UTF-8'
54+
options.charSet = options.encoding
55+
}
56+
3757
test {
3858
useTestNG()
3959
}
4060

4161
task wrapper(type: Wrapper) {
42-
gradleVersion = '2.4'
62+
gradleVersion = '2.5'
4363
}
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
#Thu Jul 02 13:50:26 CEST 2015
1+
#Wed Jul 08 14:25:52 CEST 2015
22
distributionBase=GRADLE_USER_HOME
33
distributionPath=wrapper/dists
44
zipStoreBase=GRADLE_USER_HOME
55
zipStorePath=wrapper/dists
6-
distributionUrl=https\://services.gradle.org/distributions/gradle-2.4-bin.zip
6+
distributionUrl=https\://services.gradle.org/distributions/gradle-2.5-bin.zip

0 commit comments

Comments
 (0)