1
0

initial commit

This commit is contained in:
2024-09-04 18:22:39 +03:00
commit 96b358f428
8 changed files with 400 additions and 0 deletions

19
build.gradle Normal file
View File

@@ -0,0 +1,19 @@
plugins {
id 'java'
}
group = 'ru.lionarius'
version = '1-LAB'
repositories {
mavenCentral()
}
dependencies {
testImplementation platform('org.junit:junit-bom:5.10.0')
testImplementation 'org.junit.jupiter:junit-jupiter'
}
test {
useJUnitPlatform()
}