m-chrzan.xyz
aboutsummaryrefslogtreecommitdiff
path: root/build.gradle
diff options
context:
space:
mode:
authorMarcin Chrzanowski <marcin.j.chrzanowski@gmail.com>2019-11-14 20:09:45 +0100
committerMarcin Chrzanowski <marcin.j.chrzanowski@gmail.com>2019-11-14 20:09:45 +0100
commit68b2cba1cf2bc96a996a15220e4df95b2e86520e (patch)
tree8175a119c070a17071696d0bcd0fc1b27b95d97e /build.gradle
parent4708ba199166d777d0b60879398a8e000f7aaf56 (diff)
Add basic client
Diffstat (limited to 'build.gradle')
-rw-r--r--build.gradle8
1 files changed, 8 insertions, 0 deletions
diff --git a/build.gradle b/build.gradle
index 8294b27..732e30d 100644
--- a/build.gradle
+++ b/build.gradle
@@ -18,12 +18,15 @@ repositories {
// Use jcenter for resolving dependencies.
// You can declare any Maven/Ivy/file repository here.
jcenter()
+ mavenCentral()
}
dependencies {
// This dependency is used by the application.
implementation 'com.google.guava:guava:28.0-jre'
+ implementation 'org.springframework.boot:spring-boot-starter-web:2.2.1.RELEASE'
+
// Use JUnit test framework
testImplementation 'junit:junit:4.12'
@@ -47,3 +50,8 @@ task runAgent(type: JavaExec) {
classpath = sourceSets.main.runtimeClasspath
main = 'pl.edu.mimuw.cloudatlas.agent.Agent'
}
+
+task runClient(type: JavaExec) {
+ classpath = sourceSets.main.runtimeClasspath
+ main = 'pl.edu.mimuw.cloudatlas.client.Client'
+}