File tree Expand file tree Collapse file tree 1 file changed +25
-4
lines changed Expand file tree Collapse file tree 1 file changed +25
-4
lines changed Original file line number Diff line number Diff line change 192
192
<artifactId >maven-javadoc-plugin</artifactId >
193
193
<version >2.9.1</version >
194
194
<configuration >
195
+ <verbose >false</verbose >
196
+ <additionalparam >${javadoc.opts} </additionalparam >
195
197
<!-- I can haz math in my javadoc (see http://zverovich.net/2012/01/14/beautiful-math-in-javadoc.html) -->
196
- <additionalparam >-header '< script type="text/javascript" src="http://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML">< /script> '</additionalparam >
198
+ <header >
199
+ < script type="text/javascript"
200
+ src="http://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML">< /script>
201
+ </header >
202
+ <!-- open external links in a separate window -->
203
+ <bottom >
204
+ < script type="text/javascript">
205
+ for(var i in document.links) {
206
+ var link = document.links[i];
207
+ if (link.href.indexOf('is-external=true') != -1) link.target = '_blank';
208
+ }
209
+ < /script>
210
+ </bottom >
211
+ <links >
212
+ <link >https://docs.oracle.com/javase/8/docs/api/</link >
213
+ <link >http://docs.guava-libraries.googlecode.com/git-history/v16.0.1/javadoc/</link >
214
+ <link >http://netty.io/4.0/api/</link >
215
+ <!-- dependencies from driver-extras -->
216
+ <link >http://www.joda.org/joda-time/apidocs/</link >
217
+ <link >http://fasterxml.github.io/jackson-core/javadoc/2.6/</link >
218
+ <link >http://fasterxml.github.io/jackson-databind/javadoc/2.6/</link >
219
+ <link >https://javaee-spec.java.net/nonav/javadocs/</link >
220
+ </links >
197
221
</configuration >
198
222
<executions >
199
223
<execution >
200
224
<id >attach-javadocs</id >
201
225
<goals >
202
226
<goal >jar</goal >
203
227
</goals >
204
- <configuration >
205
- <additionalparam >${javadoc.opts} </additionalparam >
206
- </configuration >
207
228
</execution >
208
229
</executions >
209
230
</plugin >
You can’t perform that action at this time.
0 commit comments