如何将com.sun.tools.javac.code.Attribute导入kotlin模块?

时间:2018-03-25 06:21:09

标签: annotations kotlin

我在Kotlin写了注释处理器。它可以工作,但我无法导入com.sun.tools.javac.code.Attribute类:Andtoid Strudio正确地向我显示,但在编译期间我在导入行获得Unresolved reference: tools

我需要导入什么?

现在,此模块仅导入kotlin-stdlibkotlinpoet

1 个答案:

答案 0 :(得分:5)

您需要将JDK中的tools.jar添加到模块的依赖项中:

compile files("${System.properties['java.home']}/../lib/tools.jar")