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

org.netbeans.modules.gradle.newproject.multi-root.gradle.template Maven / Gradle / Ivy

There is a newer version: RELEASE240
Show newest version
<#-- FreeMarker template (see http://freemarker.org/) -->
<#if description?? && description != "">
description = '${description}'

allprojects {

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


    repositories {
        mavenCentral()
    }
}

subprojects {
    apply plugin: 'java'

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

    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy