com.strumenta.antlr-kotlin
所有者: Federico Tomassetti
ANTLR的Kotlin目标。在Kotlin中生成多平台分析器
https://github.com/Strumenta/antlr-kotlin
来源: https://github.com/Strumenta/antlr-kotlin.git
使用 plugins DSL
plugins {
id("com.strumenta.antlr-kotlin") version "1.0.0-RC4"
}
使用 遗留插件应用
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org.cn/m2/")
}
}
dependencies {
classpath("com.strumenta:antlr-kotlin-gradle-plugin:1.0.0-RC4")
}
}
apply(plugin = "com.strumenta.antlr-kotlin")
使用 plugins DSL
plugins {
id "com.strumenta.antlr-kotlin" version "1.0.0-RC4"
}
使用 遗留插件应用
buildscript {
repositories {
maven {
url "https://plugins.gradle.org.cn/m2/"
}
}
dependencies {
classpath "com.strumenta:antlr-kotlin-gradle-plugin:1.0.0-RC4"
}
}
apply plugin: "com.strumenta.antlr-kotlin"