Initial commit

This commit is contained in:
github-classroom[bot]
2023-10-18 06:23:58 +00:00
committed by GitHub
commit 238c1fcc22
7 changed files with 278 additions and 0 deletions

16
build.gradle Normal file
View File

@@ -0,0 +1,16 @@
plugins {
id 'java'
}
group 'ch.hevs.sdi'
version '1.0-SNAPSHOT'
sourceCompatibility = 1.8
repositories {
mavenCentral()
}
dependencies {
compile group: 'com.fasterxml.jackson.core', name: 'jackson-databind', version: '2.10.1'
}