File tree Expand file tree Collapse file tree 4 files changed +6
-2
lines changed
MJAVADOC-575_source8-module-info
test/java/org/apache/maven/plugins/javadoc Expand file tree Collapse file tree 4 files changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -19,4 +19,4 @@ invoker.goals=clean javadoc:javadoc
19
19
# Javadoc 12+ fails:
20
20
# The code being documented uses modules but the packages defined in https://docs.oracle.com/javase/1.5.0/docs/api/ are in the unnamed module.
21
21
# Unrelated to the issue
22
- invoker.java.version = 12 -
22
+ invoker.java.version = 11 -
Original file line number Diff line number Diff line change 52
52
</plugins >
53
53
</pluginManagement >
54
54
</build >
55
-
56
55
</project >
Original file line number Diff line number Diff line change 66
66
</executions >
67
67
<configuration >
68
68
<source >8</source >
69
+ <detectJavaApiLink >false</detectJavaApiLink >
69
70
</configuration >
70
71
</plugin >
71
72
</plugins >
Original file line number Diff line number Diff line change 57
57
import org .codehaus .plexus .util .FileUtils ;
58
58
import org .codehaus .plexus .util .StringUtils ;
59
59
import org .junit .AssumptionViolatedException ;
60
+ import org .junit .Ignore ;
60
61
import org .sonatype .aether .impl .internal .SimpleLocalRepositoryManager ;
61
62
62
63
/**
@@ -920,9 +921,12 @@ public void testJdk6()
920
921
*
921
922
* @throws Exception if any
922
923
*/
924
+ @ Ignore ("We don't really want to have unit test which need internet access" )
923
925
public void testProxy ()
924
926
throws Exception
925
927
{
928
+ // ignore test as annotation doesn't ignore anything..
929
+ if (true ) return ;
926
930
Settings settings = new Settings ();
927
931
Proxy proxy = new Proxy ();
928
932
You can’t perform that action at this time.
0 commit comments