Код IT
← Каталог

Gradle Groovy DSL — первая сборка — Создание проекта

Фрагмент из «Gradle Groovy DSL — первая сборка»: Создание проекта.

Groovy main.groovy
plugins {
    id 'java'
}

repositories {
    mavenCentral()
}

dependencies {
    implementation 'org.apache.groovy:groovy:4.0.21'
}

tasks.named('test') {
    useJUnitPlatform()
}
plugins {
    id 'java'
}

repositories {
    mavenCentral()
}

dependencies {
    implementation 'org.apache.groovy:groovy:4.0.21'
}

tasks.named('test') {
    useJUnitPlatform()
}