-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
60 lines (51 loc) · 1.89 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
57
58
59
60
buildscript {
ext {
springBootVersion = '2.1.3.RELEASE'
springCloudVersion = 'Greenwich.SR1'
}
repositories {
mavenCentral()
maven { url 'https://repo.spring.io/milestone' }
}
dependencies {
classpath "org.springframework.boot:spring-boot-gradle-plugin:${springBootVersion}" as Object
classpath "org.springframework.cloud:spring-cloud-dependencies:${springCloudVersion}" as Object
}
}
plugins {
id "io.spring.dependency-management" version "1.0.5.RELEASE"
id 'java'
id 'org.springframework.boot' version '2.1.3.RELEASE'
}
apply plugin: 'groovy'
apply plugin: 'io.spring.dependency-management'
group = 'hive'
version = '0.0.1-SNAPSHOT'
sourceCompatibility = '11'
repositories {
mavenCentral()
maven { url 'https://repo.spring.io/milestone' }
}
dependencies {
implementation project(':pandora')
implementation 'javax.xml.bind:jaxb-api:2.3.1'
implementation 'javax.activation:activation:1.1.1'
implementation 'org.glassfish.jaxb:jaxb-runtime:2.3.2'
implementation 'org.springframework.boot:spring-boot-starter-web'
implementation 'org.springframework.boot:spring-boot-starter-data-jpa'
implementation 'com.h2database:h2'
implementation 'org.springframework.cloud:spring-cloud-starter-netflix-eureka-client'
implementation 'org.codehaus.groovy.modules.http-builder:http-builder:0.7.1'
testImplementation 'org.springframework.boot:spring-boot-starter-test'
testCompile(
'org.hamcrest:hamcrest-core:1.3',//if not using delete this
'org.spockframework:spock-core:1.3-groovy-2.5',
'org.spockframework:spock-spring:1.3-groovy-2.5'
)
}
dependencyManagement {
imports {
mavenBom "org.springframework.boot:spring-boot-dependencies:${springBootVersion}"
mavenBom "org.springframework.cloud:spring-cloud-dependencies:${springCloudVersion}"
}
}