first commit

This commit is contained in:
2022-09-14 14:59:02 +01:00
parent 18923a2f73
commit 8086195acb
3 changed files with 48 additions and 0 deletions

19
build.gradle Normal file
View File

@@ -0,0 +1,19 @@
plugins {
id 'java'
}
group 'org.example'
version '1.0-SNAPSHOT'
repositories {
mavenCentral()
}
dependencies {
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.8.1'
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.8.1'
}
test {
useJUnitPlatform()
}