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

skeleton.build.gradle Maven / Gradle / Ivy

plugins {
@buildPlugins@
}

group "@grails.app.group@"

repositories {
@repositories@
}

configurations {
    developmentOnly
}

dependencies {
    developmentOnly("org.springframework.boot:spring-boot-devtools")
@dependencies@
}

java {
    toolchain {
        languageVersion = JavaLanguageVersion.of(17)
    }
}

tasks.withType(Jar) {
    configure {
        duplicatesStrategy = DuplicatesStrategy.INCLUDE
    }
}

tasks.withType(GroovyCompile) {
    configure(groovyOptions) {
        forkOptions.jvmArgs = ['-Xmx1024m']
    }
}

tasks.withType(Test) {
    useJUnitPlatform()
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy