File tree Expand file tree Collapse file tree 1 file changed +6
-2
lines changed
Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -105,7 +105,9 @@ subprojects {
105105
106106 javadoc {
107107 options. addStringOption(' Xdoclint:all' , ' -quiet' )
108- options. addStringOption(' link' , ' https://docs.oracle.com/javase/8/docs/api/' )
108+ options. addMultilineStringsOption(' link' ). setValue([
109+ ' https://docs.oracle.com/javase/8/docs/api/' ,
110+ ' https://www.antlr.org/api/Java/' ])
109111 options. encoding = ' UTF-8'
110112 }
111113}
@@ -121,7 +123,9 @@ task monolithicJavadoc(type: Javadoc) {
121123 title = " JBotSim Project documentation"
122124
123125 options. addStringOption(' Xdoclint:all' , ' -quiet' )
124- options. addStringOption(' link' , ' https://docs.oracle.com/javase/8/docs/api/' )
126+ options. addMultilineStringsOption(' link' ). setValue([
127+ ' https://docs.oracle.com/javase/8/docs/api/' ,
128+ ' https://www.antlr.org/api/Java/' ])
125129 options. encoding = ' UTF-8'
126130
127131 classpath = files(subprojects. collect { it. sourceSets. main. compileClasspath })
You can’t perform that action at this time.
0 commit comments