Skip to content

Commit 60fa754

Browse files
author
Mustafa Sezgin
committed
Removed the exclude from the javadoc task as it was breaking javadoc generation from the projects root folder
1 parent b80de93 commit 60fa754

File tree

2 files changed

+8
-3
lines changed

2 files changed

+8
-3
lines changed

rxjava-contrib/rxjava-android/build.gradle

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,9 +32,6 @@ idea {
3232
}
3333

3434
javadoc {
35-
exclude "rx/android/testsupport"
36-
//Excluding the test support directory causes an error when generating docs
37-
failOnError false;
3835
options {
3936
doclet = "org.benjchristensen.doclet.DocletExclude"
4037
docletpath = [rootProject.file('./gradle/doclet-exclude.jar')]
@@ -54,3 +51,11 @@ jar {
5451
instruction 'Import-Package', '!org.junit,!junit.framework,!org.mockito.*,*'
5552
}
5653
}
54+
55+
test {
56+
testLogging {
57+
exceptionFormat "full"
58+
events "started"
59+
displayGranularity 2
60+
}
61+
}

0 commit comments

Comments
 (0)