Java コンパイラ APIClass-Path
は、クラスパス引数にエントリがあるマニフェストのみの jar ファイルをサポートしていますか?
Maven Surefire テストで Java Compiler API を使用しようとしていますが、Java Compiler API、より正確にはToolProvider.getSystemJavaCompiler()
は Surefire のマニフェストのみの jar を適切に処理していないようです。
以下は、失敗したテストを示すコード スニペットです。
new File("target/out").mkdir();
JavaCompiler compiler = ToolProvider.getSystemJavaCompiler();
URLClassLoader classLoader = (URLClassLoader)Thread.currentThread().getContextClassLoader();
// create classpath
StringBuilder path = new StringBuilder();
for (URL url : ((URLClassLoader) classLoader).getURLs()) {
if (path.length() > 0) {
path.append(File.pathSeparator);
}
String decodedPath = URLDecoder.decode(url.getPath(), "UTF-8");
path.append(new File(decodedPath).getAbsolutePath());
}
System.err.println(path);
// compile
List<String> options = Arrays.asList(
"-classpath", path.toString(),
"-s", "target/out",
"src/test/java/com/mysema/codegen/SimpleCompilerTest.java");
int compilationResult = compiler.run(null, null, null,
options.toArray(new String[options.size()]));
if (compilationResult != 0) {
Assert.fail("Compilation Failed");
}