23 lines
462 B
Groovy
23 lines
462 B
Groovy
plugins {
|
|
id 'java'
|
|
}
|
|
|
|
group 'SeniorAssistant'
|
|
version '1.0-SNAPSHOT'
|
|
|
|
sourceCompatibility = 1.8
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
|
|
dependencies {
|
|
testCompile group: 'junit', name: 'junit', version: '4.12'
|
|
// compile "com.sparkjava:spark-core:2.5.5"
|
|
// compile "org.slf4j:slf4j-simple:1.7.21"
|
|
compile "com.google.code.gson:gson:2.8.0"
|
|
// compile "org.xerial:sqlite-jdbc:3.15.1"
|
|
compile 'org.apache.httpcomponents:httpclient:4.5.3'
|
|
|
|
}
|