Initial Commit

This commit is contained in:
Ziver Koc 2021-02-25 23:31:31 +01:00
commit 265d54a484
36 changed files with 109235 additions and 0 deletions

22
build.gradle Normal file
View file

@ -0,0 +1,22 @@
plugins {
id 'java'
}
group 'se.koc.trader'
version '0.0-SNAPSHOT'
repositories {
mavenLocal()
mavenCentral()
}
dependencies {
implementation("se.koc:zutil:1.0.0-SNAPSHOT")
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.6.0'
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine'
}
test {
useJUnitPlatform()
}