DemoApplication/build.gradle
vladyslav-crunch 3b50f4a582 init
2025-10-10 10:44:52 +02:00

19 lines
279 B
Groovy

plugins {
id 'java'
}
group = 'org.example'
version = '1.0-SNAPSHOT'
repositories {
mavenCentral()
}
dependencies {
testImplementation platform('org.junit:junit-bom:5.9.1')
testImplementation 'org.junit.jupiter:junit-jupiter'
}
test {
useJUnitPlatform()
}