|
66 | 66 | import com.thoughtworks.qdox.parser.ParseException;
|
67 | 67 | import com.thoughtworks.qdox.type.TypeResolver;
|
68 | 68 | import org.apache.commons.lang3.ClassUtils;
|
| 69 | +import org.apache.commons.lang3.reflect.MethodUtils; |
69 | 70 | import org.apache.commons.text.StringEscapeUtils;
|
70 | 71 | import org.apache.maven.artifact.Artifact;
|
71 | 72 | import org.apache.maven.artifact.DependencyResolutionRequiredException;
|
|
79 | 80 | import org.apache.maven.settings.Settings;
|
80 | 81 | import org.apache.maven.shared.invoker.MavenInvocationException;
|
81 | 82 | import org.codehaus.plexus.components.interactivity.InputHandler;
|
| 83 | +import org.codehaus.plexus.languages.java.version.JavaVersion; |
82 | 84 | import org.codehaus.plexus.util.FileUtils;
|
83 | 85 | import org.codehaus.plexus.util.ReaderFactory;
|
84 | 86 | import org.codehaus.plexus.util.StringUtils;
|
@@ -201,6 +203,8 @@ public abstract class AbstractFixJavadocMojo extends AbstractMojo {
|
201 | 203 | */
|
202 | 204 | private static final String CLIRR_MAVEN_PLUGIN_GOAL = "check";
|
203 | 205 |
|
| 206 | + private static final JavaVersion JAVA_VERSION = JavaVersion.JAVA_SPECIFICATION_VERSION; |
| 207 | + |
204 | 208 | /**
|
205 | 209 | * Java Files Pattern.
|
206 | 210 | */
|
@@ -837,7 +841,17 @@ private ClassLoader getProjectClassLoader() throws MojoExecutionException {
|
837 | 841 | }
|
838 | 842 | }
|
839 | 843 |
|
840 |
| - projectClassLoader = new URLClassLoader(urls.toArray(new URL[urls.size()]), null); |
| 844 | + ClassLoader parent = null; |
| 845 | + if (JAVA_VERSION.isAtLeast("9")) { |
| 846 | + try { |
| 847 | + parent = (ClassLoader) MethodUtils.invokeStaticMethod(ClassLoader.class, "getPlatformClassLoader"); |
| 848 | + } catch (Exception e) { |
| 849 | + throw new MojoExecutionException( |
| 850 | + "Failed to invoke ClassLoader#getPlatformClassLoader() dynamically", e); |
| 851 | + } |
| 852 | + } |
| 853 | + |
| 854 | + projectClassLoader = new URLClassLoader(urls.toArray(new URL[urls.size()]), parent); |
841 | 855 | }
|
842 | 856 |
|
843 | 857 | return projectClassLoader;
|
|
0 commit comments