Initial data push

This commit is contained in:
UnrealValentin
2021-04-11 12:23:42 +02:00
commit e4f5d96100
17 changed files with 762 additions and 0 deletions

21
build.gradle Normal file
View File

@@ -0,0 +1,21 @@
plugins {
id 'java'
id 'org.jetbrains.kotlin.jvm' version '1.4.32'
}
group 'org.hmcore'
version '1.0-SNAPSHOT'
repositories {
mavenCentral()
}
dependencies {
implementation "org.jetbrains.kotlin:kotlin-stdlib"
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.6.0'
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine'
}
test {
useJUnitPlatform()
}