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

org.netbeans.modules.gradle.newproject.single-build.gradle.template Maven / Gradle / Ivy

<#-- FreeMarker template (see http://freemarker.org/) -->
<#if plugins??>
<#list plugins as plugin>
apply plugin: '${plugin}'



<#if description?? && description != ''>

description = '${description}'

<#if group?? && group != "">
    group = '${group}'

<#if mainClassName??>

mainClassName = '${packageBase}.${mainClassName}'


<#if javaVersion??>
sourceCompatibility = ${javaVersion}
targetCompatibility = ${javaVersion}

repositories {
    mavenCentral()
}

<#if dependencies??>
dependencies {
<#list dependencies as dep>
    ${dep}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy