Dawit #1

Merged
DawitG96 merged 10 commits from dawit into master 2018-06-01 21:36:48 +02:00
Showing only changes of commit 79989af712 - Show all commits

View File

@@ -1,36 +1,38 @@
plugins { plugins {
id 'java' id 'java'
} }
group 'SeniorAssistant' group 'SeniorAssistant'
version '1.0-SNAPSHOT' version '1.0-SNAPSHOT'
sourceCompatibility = 1.8 sourceCompatibility = 1.8
repositories { repositories {
mavenCentral() mavenCentral()
} }
dependencies { dependencies {
testCompile group: 'junit', name: 'junit', version: '4.12' testCompile group: 'junit', name: 'junit', version: '4.12'
// compile "com.sparkjava:spark-core:2.5.5" // compile "com.sparkjava:spark-core:2.5.5"
// compile "org.slf4j:slf4j-simple:1.7.21" // compile "org.slf4j:slf4j-simple:1.7.21"
compile "com.google.code.gson:gson:2.8.0" compile "com.google.code.gson:gson:2.8.0"
// compile "org.xerial:sqlite-jdbc:3.15.1" // compile "org.xerial:sqlite-jdbc:3.15.1"
compile 'org.apache.httpcomponents:httpclient:4.5.3' compile 'org.apache.httpcomponents:httpclient:4.5.3'
compile 'com.google.api-client:google-api-client:1.23.0' compile 'com.google.api-client:google-api-client:1.23.0'
compile group: 'com.google.oauth-client', name: 'google-oauth-client-jetty', version: '1.11.0-beta' compile group: 'com.google.oauth-client', name: 'google-oauth-client-jetty', version: '1.11.0-beta'
// z-way-lib and all its dependencies (from https://github.com/pathec/ZWay-library-for-Java)
compile files('lib/zway-lib-0.2.9-SNAPSHOT.jar') // z-way-lib and all its dependencies (from https://github.com/pathec/ZWay-library-for-Java)
// compile 'com.google.code.gson:gson:2.4' //already up there
compile 'org.apache.commons:commons-lang3:3.4' compile files('lib/zway-lib-0.2.9-SNAPSHOT.jar')
compile 'org.eclipse.jetty:jetty-client:9.3.11.v20160721' // compile 'com.google.code.gson:gson:2.4' //already up there
compile 'org.eclipse.jetty:jetty-http:9.3.11.v20160721' compile 'org.apache.commons:commons-lang3:3.4'
compile 'org.eclipse.jetty:jetty-io:9.3.11.v20160721' compile 'org.eclipse.jetty:jetty-client:9.3.11.v20160721'
compile 'org.eclipse.jetty:jetty-util:9.3.11.v20160721' compile 'org.eclipse.jetty:jetty-http:9.3.11.v20160721'
compile 'org.eclipse.jetty.websocket:websocket-api:9.3.12.v20160915' compile 'org.eclipse.jetty:jetty-io:9.3.11.v20160721'
compile 'org.eclipse.jetty.websocket:websocket-client:9.3.12.v20160915' compile 'org.eclipse.jetty:jetty-util:9.3.11.v20160721'
compile 'org.eclipse.jetty.websocket:websocket-common:9.3.12.v20160915' compile 'org.eclipse.jetty.websocket:websocket-api:9.3.12.v20160915'
compile 'org.slf4j:slf4j-simple:1.7.21' compile 'org.eclipse.jetty.websocket:websocket-client:9.3.12.v20160915'
} compile 'org.eclipse.jetty.websocket:websocket-common:9.3.12.v20160915'
compile 'org.slf4j:slf4j-simple:1.7.21'
}