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

cc.catalysts.gradle.plugins.codegen.groovy.CodegenGroovyExtension.groovy Maven / Gradle / Ivy

The newest version!
package cc.catalysts.gradle.plugins.codegen.groovy

/**
 * @author Catalysts GmbH, www.catalysts.cc
 */
public class CodegenGroovyExtension {
    String fileExt = "groovy"
    String packageName
    String destDir = "target/generated-sources/main/"

    public packageName(pack) {
        this.packageName = pack
    }

    public destDir(destDir) {
        this.destDir = destDir
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy