io.github.mmm.code.impl.java.source.maven.MavenClassLoader Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of mmm-code-java-impl Show documentation
Show all versions of mmm-code-java-impl Show documentation
Implementation of mmm-code-api for Java.
package io.github.mmm.code.impl.java.source.maven;
import java.net.URL;
import java.net.URLClassLoader;
/**
* Customized class loader that we need in order to load all dependencies from a Maven project
*/
public class MavenClassLoader extends URLClassLoader {
/**
* The constructor.
*
* @param parent classloader parent
* @param urls urls to load on this class loader
*/
public MavenClassLoader(ClassLoader parent, URL... urls) {
super(urls, parent);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy