forked from openMF/stellar-connector
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
56 lines (49 loc) · 1.74 KB
/
build.gradle
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
buildscript {
ext {
springBootVersion = '1.4.1.RELEASE'
}
repositories {
jcenter()
}
dependencies {
classpath ("org.springframework.boot:spring-boot-gradle-plugin:${springBootVersion}")
}
}
apply plugin: 'java'
apply plugin: 'idea'
apply plugin: 'eclipse'
apply plugin: 'spring-boot'
sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
if (project.hasProperty('profile')
&& project.getProperty('profile') == 'deployable') {
apply from: 'profile-deployable.gradle'
} else {
apply from: 'profile-standalone.gradle'
}
repositories {
mavenLocal()
mavenCentral()
maven { url "http://repo.spring.io/libs-release" }
maven { url "https://repository.jboss.org/nexus/content/repositories/releases" }
maven { url "https://jitpack.io" }
}
dependencies {
compile("org.springframework.boot:spring-boot-starter-web")
compile("org.springframework.boot:spring-boot-starter-actuator")
compile("org.springframework.boot:spring-boot-starter-data-jpa")
compile("org.hsqldb:hsqldb")
compile("org.flywaydb:flyway-core")
compile('com.squareup.okhttp3:okhttp:3.0.1')
compile('com.squareup.okhttp:okhttp-urlconnection:2.7.2')
compile('com.squareup.retrofit:retrofit:1.9.0')
compile("com.google.code.gson:gson:2.2.4")
compile("com.google.guava:guava:19.0")
compile("com.github.stellar:java-stellar-sdk:0.1.6")
testCompile("org.springframework.boot:spring-boot-starter-test")
testCompile("junit:junit:4.12")
testCompile("org.jmock:jmock-junit4:2.8.1")
testCompile("org.jmock:jmock-legacy:2.8.1")
testCompile("com.github.docker-java:docker-java:2.1.4")
testCompile("com.jayway.restassured:rest-assured:2.8.0")
}