我正在使用 Google Compile-Testing 和 JUnit 为我的注释处理器编写测试。
如何提供一些存在于 maven 的库(例如,"somegroup:somelib:1.0"
)来编译?
Compilation compilation = Compiler.javac().withProcessors(new MyProcessor())
.withClasspath(???) //What's there to use?
.compile(
JavaFileObjects.forResource("path/to/SomeClass.java")
...
);