← Каталог
Gradle Groovy DSL — первая сборка — Создание проекта
Фрагмент из «Gradle Groovy DSL — первая сборка»: Создание проекта.
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()
}