com.strumenta.antlr-kotlin
Owner: Federico Tomassetti
Kotlin target for ANTLR. Generate multi-platform parsers in Kotlin
https://github.com/Strumenta/antlr-kotlin
Sources: https://github.com/Strumenta/antlr-kotlin.git
Version 1.0.1 (latest)
1.0.1
Created 20 September 2024.
The ANTLR Gradle plugin for the Kotlin target
Using the plugins DSL:
plugins {
id("com.strumenta.antlr-kotlin") version "1.0.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.strumenta:antlr-kotlin-gradle-plugin:1.0.1")
}
}
apply(plugin = "com.strumenta.antlr-kotlin")
Using the plugins DSL:
plugins {
id "com.strumenta.antlr-kotlin" version "1.0.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.strumenta:antlr-kotlin-gradle-plugin:1.0.1"
}
}
apply plugin: "com.strumenta.antlr-kotlin"