@@ -22,8 +22,6 @@ javadoc {
22
22
// While there's errors the javadoc is still generated without those symbols or links ;
23
23
// for this reason the javadoc output is suppressed and can be reactivated with --info option.
24
24
exclude ' org/mockito/internal'
25
- logging. captureStandardError LogLevel . INFO
26
- logging. captureStandardOutput LogLevel . INFO // suppress "## warnings" message
27
25
28
26
options. docTitle = """ <h1><a href="org/mockito/Mockito.html">Click to see examples</a>. Mockito ${ project.version} API.</h1>"""
29
27
options. windowTitle = " Mockito ${ project.version} API"
@@ -41,9 +39,7 @@ javadoc {
41
39
options. noNavBar = false
42
40
options. noTree = false
43
41
options. links = [' https://docs.oracle.com/javase/6/docs/api/' ,
44
- ' http://junit.org/junit4/javadoc/4.12/' ]
45
- options. header(""" <em id="mockito-version-header-javadoc7-header"><strong>Mockito ${ project.version} API</strong></em>""" )
46
- options. footer(""" <em id="mockito-version-header-javadoc7-footer"><strong>Mockito ${ project.version} API</strong></em>""" )
42
+ ' https://junit.org/junit4/javadoc/4.12/' ]
47
43
options. bottom("""
48
44
<script type="text/javascript" src="{@docRoot}/js/jdk6-project-version-insert.min.js"></script>
49
45
<script type="text/javascript" src="{@docRoot}/js/jquery-1.7.min.js"></script>
@@ -53,16 +49,8 @@ javadoc {
53
49
<script type="text/javascript" src="{@docRoot}/js/index.js" async defer></script>
54
50
""" . replaceAll(/ \r |\n |[ ]{8}/ , " " ))
55
51
options. stylesheetFile rootProject. file(" src/javadoc/stylesheet.css" )
56
- options. addStringOption(' Xdoclint:none' , ' -quiet' )
57
-
58
- def minorVersion = System . getProperty(" java.version" ) =~ / 1.8.0_(\d *)/
59
-
60
- // Since JDK 8 version 121 scripts are not allowed in comments. However,
61
- // earlier version throw an error if an unknown option is passed.
62
- // Therefore only add this option if the JDK is actually correct.
63
- if (minorVersion. size() > 0 && Integer . valueOf(minorVersion[0 ][1 ]) >= 121 || JavaVersion . current(). isJava9Compatible()) {
64
- options. addBooleanOption(' -allow-script-in-comments' , true )
65
- }
52
+ options. addStringOption(' Xwerror' , ' -quiet' )
53
+ options. addBooleanOption(' -allow-script-in-comments' , true )
66
54
67
55
doLast {
68
56
copy {
0 commit comments