我在 gradle 插件中添加了 antlr,但它不起作用
plugins {
id "antlr"
id 'war'
id "org.gretty" version "3.0.1"
}
和
dependencies {
// This dependency is used by the application.
compile 'com.google.guava:guava:28.1-jre'
compile 'javax.servlet:jstl:1.2'
antlr "org.antlr:antlr4:4.8"
}
但是当我运行 gradle 任务时,它没有出现
如果我理解你的问题,你需要输入
gradle tasks --all
然后,您将在"其他任务"下找到鹿角任务。
...
generateGrammarSource - Processes the main Antlr grammars.
generateTestGrammarSource - Processes the test Antlr grammars.
...
有关详细信息,请参阅 Gradle CLI 文档。