-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
52 lines (47 loc) · 2.04 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
plugins {
id 'org.springframework.boot' version '2.3.1.RELEASE'
id 'io.spring.dependency-management' version '1.0.9.RELEASE'
id 'java'
id 'com.palantir.docker' version '0.25.0'
}
group = 'acdh.oeaw.ac.at'
version = '0.0.1-SNAPSHOT'
sourceCompatibility = '11'
repositories {
mavenCentral()
}
bootJar {
baseName = 'dylen-ego-network-service'
version = '0.2.0'
}
dependencies {
annotationProcessor "org.projectlombok:lombok:1.18.12"
compileOnly 'org.projectlombok:lombok:1.18.12'
implementation 'com.graphql-java-kickstart:graphql-spring-boot-starter:8.0.0'
implementation 'com.graphql-java-kickstart:graphql-java-tools:6.2.0'
implementation 'com.google.guava:guava:29.0-jre' // NEW
implementation 'org.springframework.boot:spring-boot-starter-web'
implementation 'org.springframework.boot:spring-boot-starter-actuator'
implementation 'org.springframework.boot:spring-boot-starter-data-mongodb'
implementation 'org.springframework.boot:spring-boot-starter-data-elasticsearch'
implementation 'org.springframework.boot:spring-boot-starter-cache'
implementation 'org.ehcache:ehcache:3.9.0'
implementation 'javax.cache:cache-api:1.1.1'
testImplementation('org.springframework.boot:spring-boot-starter-test') {
exclude group: 'org.junit.vintage', module: 'junit-vintage-engine'
}
testImplementation 'org.springframework.boot:spring-boot-starter-data-elasticsearch'
testImplementation 'com.graphql-java-kickstart:graphql-spring-boot-starter-test:8.0.0'
testImplementation 'org.springframework.boot:spring-boot-starter-data-mongodb'
testImplementation group: 'org.assertj', name: 'assertj-core', version: '3.16.1'
testImplementation "org.testcontainers:testcontainers:1.15.0"
testImplementation "org.testcontainers:junit-jupiter:1.15.0"
testImplementation "org.testcontainers:mongodb:1.15.0"
testImplementation "org.testcontainers:elasticsearch:1.15.0"
testImplementation 'org.projectlombok:lombok:1.18.12'
testImplementation 'ch.qos.logback:logback-classic:1.2.3'
testAnnotationProcessor "org.projectlombok:lombok:1.18.12"
}
test {
useJUnitPlatform()
}