Revert back to full MondayWorkhours file; increase Xmx to 64GB as default when run...
[pingpong.git] / Code / Projects / TplinkPlugClient / build.gradle
1 group 'edu.uci.iotproject.tplinkplug'
2 version '1.0-SNAPSHOT'
3
4 apply plugin: 'java'
5 apply plugin: 'application'
6
7 mainClassName = 'edu.uci.iotproject.tplinkplug.Main'
8
9 sourceCompatibility = 1.8
10
11 repositories {
12     mavenCentral()
13 }
14
15 dependencies {
16
17     compile group: 'com.mashape.unirest', name: 'unirest-java', version: '1.4.9'
18
19     compile group: 'javax.ws.rs', name: 'javax.ws.rs-api', version: '2.1'
20     runtime group: 'org.glassfish.jersey.core', name: 'jersey-client', version: '2.27'
21     runtime group: 'org.glassfish.jersey.inject', name: 'jersey-hk2', version: '2.27'
22
23     testCompile group: 'junit', name: 'junit', version: '4.11'
24 }