Skip to content
This repository was archived by the owner on Nov 2, 2020. It is now read-only.

Commit e59a9bf

Browse files
committed
JAVADOC TEST
1 parent 1412ef0 commit e59a9bf

File tree

1 file changed

+16
-1
lines changed

1 file changed

+16
-1
lines changed

build.gradle

Lines changed: 16 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
group 'com.github.Yegorisa'
1+
group 'com.github.ClusterWS'
22
version '1.1.0'
33

44
apply plugin: 'java'
@@ -17,3 +17,18 @@ dependencies {
1717
compile 'com.neovisionaries:nv-websocket-client:2.3'
1818
compile group: 'org.json', name: 'json', version: '20170516'
1919
}
20+
21+
task sourcesJar(type: Jar, dependsOn: classes) {
22+
classifier = 'sources'
23+
from sourceSets.main.allSource
24+
}
25+
26+
task javadocJar(type: Jar, dependsOn: javadoc) {
27+
classifier = 'javadoc'
28+
from javadoc.destinationDir
29+
}
30+
31+
artifacts {
32+
archives sourcesJar
33+
archives javadocJar
34+
}

0 commit comments

Comments
 (0)