Search Gradle plugins

Version 1.0.0-RC3 (latest)

Created 11 April 2024.

The ANTLR Gradle plugin for the Kotlin target

Using the plugins DSL:

plugins {
  id("com.strumenta.antlr-kotlin") version "1.0.0-RC3"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("com.strumenta:antlr-kotlin-gradle-plugin:1.0.0-RC3")
  }
}

apply(plugin = "com.strumenta.antlr-kotlin")

Using the plugins DSL:

plugins {
  id "com.strumenta.antlr-kotlin" version "1.0.0-RC3"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "com.strumenta:antlr-kotlin-gradle-plugin:1.0.0-RC3"
  }
}

apply plugin: "com.strumenta.antlr-kotlin"

Learn how to apply plugins to subprojects