-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathcontinuity.service.cobra.gradle
73 lines (52 loc) · 1.83 KB
/
continuity.service.cobra.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
61
62
63
64
65
66
67
68
69
70
71
72
73
apply plugin: 'org.springframework.boot'
apply plugin: 'io.spring.dependency-management'
dependencyManagement {
imports {
mavenBom 'org.springframework.cloud:spring-cloud-starter-parent:Finchley.M4'
}
}
repositories {
maven {
url "https://repository.novatec-gmbh.de/content/repositories/diagnoseIT/"
}
maven {
url "https://repository.novatec-gmbh.de/content/repositories/novatec/"
}
}
dependencies {
compile project(':continuity.lib.api')
compile project(':continuity.lib.commons')
// Spring Boot
compile("org.springframework.boot:spring-boot-starter-web")
compile("org.springframework.boot:spring-boot-starter-amqp")
compile("org.springframework.cloud:spring-cloud-starter-netflix-eureka-client")
// Swagger
compile("io.springfox:springfox-swagger2:2.7.0")
compile("io.springfox:springfox-swagger-ui:2.7.0")
// Elasticsearch
compile 'org.elasticsearch.client:elasticsearch-rest-high-level-client:7.2.0'
compile 'org.elasticsearch:elasticsearch:7.2.0'
// For SHA256
compile("commons-codec:commons-codec:1.11")
testCompile("org.springframework.boot:spring-boot-starter-test")
// Required for Eclipse
compile("org.codehaus.groovy:groovy-all:2.4.7")
// Needed for OpenXtrace Deserialization (not pretty).
compile("org.codehaus.jackson:jackson-core-asl:1.9.13")
compile("org.codehaus.jackson:jackson-mapper-asl:1.9.13")
compile("org.spec.research:open.xtrace.api:0.2.2")
compile("org.spec.research:open.xtrace.default.impl:0.2.2")
compile("rocks.inspectit:shared-all:1.9.1")
// CSV mapper
compile("com.univocity:univocity-parsers:2.7.5")
}
group = 'continuityproject'
apply plugin: 'com.palantir.docker'
docker {
name "${project.group}/cobra"
files jar.archivePath
copySpec.from('.') {
include 'configuration/**'
}
buildArgs(['JAR_FILE': "${jar.archiveName}"])
}