在ENSIME中,我们将JDK tools.jar
作为unmanagedJars
添加到类路径中。不过,我还想附上我从http://download.java.net/openjdk/jdk8/下载src
作为unmanagedClassifiersJars
分类的源zip文件,有没有办法做到这一点?
似乎没有updateClassifiers
密钥,因此我能想到的唯一方法是自定义UpdateReport
阶段并返回void addDivisorFilter()
{
auto calc1 = computeSomeValue1();
auto calc2 = computeSomeValue2();
auto divisor = computeDivisor(calc1, calc2);
filters.emplace_back(
[&](int value) { return value % divisor == 0; }
);
}
的版本包含源jar。但这看起来真的很难,是否有一种方便的方法可以将文件添加到更新报告中?