Gradle Plugins

Maintained by aalmiray

Summary

This plugin integrates Antlr 4 with Gradle, allowing the generation of parsers from a Gradle build.

Website https://github.com/melix/antlr4-gradle-plugin
Author Cédric Champeau
Version 0.1-SNAPSHOT

Usage

buildscript {
    repositories {
        maven {
            name 'JFrog OSS snapshot repo'
            url  'https://oss.jfrog.org/oss-snapshot-local/'
        }
    }

    dependencies {
        classpath 'me.champeau.gradle:antlr4-gradle-plugin:0.1-SNAPSHOT'
    }
}

repositories {
   jcenter()
}

apply plugin: 'antlr4'

Notes