Initial commit

This commit is contained in:
2020-09-23 11:30:59 +02:00
commit 9df2ffe291
16 changed files with 523 additions and 0 deletions

29
build.gradle Normal file
View File

@@ -0,0 +1,29 @@
apply plugin: 'java'
apply plugin: 'application'
group 'advisor'
version '1.0-SNAPSHOT'
sourceCompatibility = 11
mainClassName = 'advisor.Main'
repositories {
mavenCentral()
}
dependencies {
compile 'com.google.code.gson:gson:+'
}
jar {
manifest {
attributes 'Main-Class' : 'advisor.Main'
}
from {
configurations.compile.collect { it.isDirectory() ? it : zipTree(it) }
}
}
run{
standardInput = System.in
}