This commit is contained in:
2025-05-12 22:29:56 +03:30
parent c241945142
commit 2c8753ca91
5 changed files with 52 additions and 0 deletions
+19
View File
@@ -0,0 +1,19 @@
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()
}