Skip to content

Commit b6a05c4

Browse files
committed
- restores javadoc configuration
Signed-off-by: Vincent Biret <vibiret@microsoft.com>
1 parent f073e95 commit b6a05c4

File tree

3 files changed

+2
-11
lines changed

3 files changed

+2
-11
lines changed

components/abstractions/build.gradle

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -65,14 +65,6 @@ sourceSets {
6565
}
6666
}
6767

68-
//Prevent javadocs from failing build
69-
tasks.withType(Javadoc) {
70-
failOnError false
71-
options.addStringOption('Xdoclint:none', '-quiet')
72-
options.addStringOption('encoding', 'UTF-8')
73-
options.addStringOption('charSet', 'UTF-8')
74-
}
75-
7668
// In this section you declare where to find the dependencies of your project
7769
repositories {
7870
// You can declare any Maven/Ivy/file repository here.

components/authentication/azure/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ plugins {
1010
java {
1111
modularity.inferModulePath = true
1212
withSourcesJar()
13-
//withJavadocJar()
13+
withJavadocJar()
1414
}
1515

1616
test {

components/http/okHttp/build.gradle

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,7 @@ plugins {
1010
java {
1111
modularity.inferModulePath = true
1212
withSourcesJar()
13-
//Prevent Javadoc from causing build failure
14-
//withJavadocJar()
13+
withJavadocJar()
1514
}
1615

1716
test {

0 commit comments

Comments
 (0)