All Downloads are FREE. Search and download functionalities are using the official Maven repository.

cc.catalysts.gradle.plugins.antlr3.Antlr3Extension.groovy Maven / Gradle / Ivy

The newest version!
package cc.catalysts.gradle.plugins.antlr3

/**
 * @author Catalysts GmbH, www.catalysts.cc
 */
public class Antlr3Extension {
    List grammarList
    String destinationDir
    String antlrSource

    Antlr3Extension(){
        grammarList = []
        antlrSource = "src" + File.separatorChar + "main" + File.separatorChar + "antlr"
        destinationDir = "target" + File.separatorChar + "generated-sources" + File.separatorChar + "antlr"
    }

    public generate(String grammar){
        grammarList.add(grammar)
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy