File tree Expand file tree Collapse file tree 1 file changed +18
-0
lines changed Expand file tree Collapse file tree 1 file changed +18
-0
lines changed Original file line number Diff line number Diff line change
1
+ buildscript {
2
+ repositories { jcenter() }
3
+
4
+ dependencies {
5
+ classpath ' com.netflix.nebula:gradle-aggregate-javadocs-plugin:2.2.+'
6
+ }
7
+ }
8
+
1
9
plugins {
2
10
id ' net.researchgate.release' version ' 2.4.0'
3
11
}
4
12
13
+ apply plugin : ' nebula-aggregate-javadocs'
5
14
apply from : ' utils.gradle'
6
15
apply plugin : ' java'
7
16
apply plugin : ' checkstyle'
@@ -15,6 +24,11 @@ description = 'Client library to use the IBM Watson and Alchemy Services'
15
24
16
25
task docs (type : Javadoc ) {
17
26
destinationDir = file(" $buildDir /docs/all" )
27
+ exclude {
28
+ // subprojects.each {
29
+ // '**/src/test/**'
30
+ // }
31
+ }
18
32
}
19
33
20
34
task copyJars (type : Copy ) {
@@ -41,6 +55,10 @@ allprojects {
41
55
42
56
subprojects {
43
57
58
+ rootProject. tasks. docs {
59
+ exclude ' alchemy/src/test/**'
60
+ }
61
+
44
62
checkstyleTest {
45
63
ignoreFailures = true
46
64
}
You can’t perform that action at this time.
0 commit comments