dependency fix and working 'hello world' template

production
Override-6 2 years ago
parent eef10d93db
commit a45177fe49

3
.gitignore vendored

@ -0,0 +1,3 @@
build
.gradle
*/.gradle/

Binary file not shown.

@ -7,6 +7,6 @@ repositories {
}
dependencies {
implementation 'gradle.plugin.org.myire:quill:3.2'
implementation 'io.getquill:quill_2.12:3.2.0'
}

@ -24,6 +24,11 @@ allprojects {
}
dependencies {
implementation project(':API')
implementation project(':DB')
}
test {
useJUnitPlatform()
}

@ -0,0 +1,9 @@
package org.tbasket
object Main {
def main(args: Array[String]): Unit = {
println("Hello Server !")
}
}