-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
46 lines (39 loc) · 1.91 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
plugins {
id 'org.springframework.boot' version '2.5.5'
id 'io.spring.dependency-management' version '1.0.11.RELEASE'
id 'java'
}
group = 'be.kdg.sa'
version = '0.0.1-SNAPSHOT'
sourceCompatibility = '11'
repositories {
mavenCentral()
}
def springBootVersion = "2.5.5"
dependencies {
implementation "org.springframework.boot:spring-boot-configuration-processor:$springBootVersion"
annotationProcessor group: 'org.springframework.boot', name: 'spring-boot-configuration-processor', version: '2.5.5'
implementation "org.springframework.boot:spring-boot-starter-amqp:$springBootVersion"
implementation "org.springframework.boot:spring-boot-starter-validation:$springBootVersion"
implementation "org.springframework.boot:spring-boot-starter-web:$springBootVersion"
implementation "org.springframework.boot:spring-boot-starter-thymeleaf:$springBootVersion"
implementation "org.springframework.boot:spring-boot-starter-data-jpa:$springBootVersion"
implementation 'au.com.dius.pact.provider:spring:4.2.14'
implementation 'com.google.code.gson:gson:2.8.8'
compileOnly 'org.projectlombok:lombok:1.18.20'
annotationProcessor 'org.projectlombok:lombok:1.18.20'
runtimeOnly 'com.h2database:h2:1.4.200'
developmentOnly "org.springframework.boot:spring-boot-devtools:$springBootVersion"
implementation 'org.jfree:jfreechart:1.0.19'
compileOnly "org.projectlombok:lombok:1.18.20"
annotationProcessor "org.projectlombok:lombok:1.18.20"
runtimeOnly 'com.h2database:h2:1.4.200'
developmentOnly "org.springframework.boot:spring-boot-devtools:$springBootVersion"
testCompileOnly "org.projectlombok:lombok:1.18.20"
testAnnotationProcessor "org.projectlombok:lombok:1.18.20"
testImplementation "org.springframework.boot:spring-boot-starter-test:$springBootVersion"
testImplementation 'org.springframework.amqp:spring-rabbit-test:2.3.9'
}
test {
useJUnitPlatform()
}