
scala_maven.TychoUtilities Maven / Gradle / Ivy
/*
* This is free and unencumbered software released into the public domain.
* See UNLICENSE.
*/
package scala_maven;
import java.io.File;
import java.lang.reflect.InvocationTargetException;
import java.lang.reflect.Method;
import java.security.AccessController;
import java.security.PrivilegedActionException;
import java.security.PrivilegedExceptionAction;
import java.util.ArrayList;
import java.util.Collections;
import java.util.List;
import org.apache.maven.project.MavenProject;
/**
* Grossly hacky utility class which provides the fully unpacked OSGI classpath (ie. including
* nested .jars) when used in the context of Tycho and Maven 3. The use of reflection is required to
* avoid wiring in a dependency on either Tycho or Maven 3.
*
* @author miles.sabin
*/
class TychoUtilities {
private static final String TychoConstants_CTX_ECLIPSE_PLUGIN_CLASSPATH =
"org.eclipse.tycho.core.TychoConstants/eclipsePluginClasspath";
private static final Method getContextValueMethod;
private static final Method getLocationsMethod;
static {
Method getContextValueMethod0 = null;
Method getLocationsMethod0 = null;
try {
final Class> mpClazz = MavenProject.class;
getContextValueMethod0 =
AccessController.doPrivileged(
(PrivilegedExceptionAction)
() -> {
Method m = mpClazz.getDeclaredMethod("getContextValue", String.class);
m.setAccessible(true);
return m;
});
final Class> cpeClazz = Class.forName("org.codehaus.tycho.ClasspathEntry");
getLocationsMethod0 =
AccessController.doPrivileged(
(PrivilegedExceptionAction)
() -> {
Method m = cpeClazz.getDeclaredMethod("getLocations");
m.setAccessible(true);
return m;
});
} catch (ClassNotFoundException | PrivilegedActionException ex) {
}
getContextValueMethod = getContextValueMethod0;
getLocationsMethod = getLocationsMethod0;
}
@SuppressWarnings("unchecked")
static List addOsgiClasspathElements(MavenProject project) {
if (getLocationsMethod == null) {
return Collections.emptyList();
}
List
© 2015 - 2025 Weber Informatics LLC | Privacy Policy