We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 11f715c commit d33ee4cCopy full SHA for d33ee4c
build.gradle
@@ -122,6 +122,17 @@ coveralls {
122
jacocoReportPath "build/reports/jacoco/test/jacocoTestReport.xml"
123
}
124
125
+javadoc {
126
+ doFirst {
127
+ // We should remove this once we start using module-info.java.
128
+ // Without that file, Javadoc will fall back to "undefined" as the module
129
+ // name resulting in broken search links. This option explicitly declares
130
+ // that we are not currently using modules and the module name should be
131
+ // omitted from Javadoc.
132
+ options.addBooleanOption('-no-module-directories', true)
133
+ }
134
+}
135
+
136
gitPublish {
137
repoUri = '[email protected]:stripe/stripe-java.git'
138
branch = 'gh-pages'
0 commit comments