-
Notifications
You must be signed in to change notification settings - Fork 63
/
build.gradle
42 lines (35 loc) · 1.14 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
plugins {
id "java"
id "io.spring.dependency-management" version "1.0.1.RELEASE"
id 'org.springframework.boot' version '1.5.2.RELEASE'
}
version = "1.0.0-SNAPSHOT"
jar {
archiveName = 'cart.jar'
}
repositories {
mavenLocal()
maven {
url "http://nexus.lab-infra.svc.cluster.local:8081/content/groups/public/"
url "https://maven.repository.redhat.com/ga/"
}
mavenCentral()
}
dependencyManagement {
imports {
mavenBom "org.springframework.cloud:spring-cloud-dependencies:Camden.SR2"
mavenBom "org.infinispan:infinispan-bom:6.3.1.Final-redhat-1"
}
}
dependencies {
compile("org.springframework.boot:spring-boot-starter-web")
compile("org.springframework.boot:spring-boot-starter-jersey")
compile("org.springframework.boot:spring-boot-starter-actuator")
compile("org.springframework.cloud:spring-cloud-starter-feign") {
exclude group: "com.sun.jersey", module: "jersey-client"
}
compile("org.infinispan:infinispan-core")
compile("org.infinispan:infinispan-client-hotrod")
runtime("org.springframework.boot:spring-boot-starter-tomcat")
testCompile("org.springframework.boot:spring-boot-starter-test")
}