forked from Centripio/geekshirt-order-service
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
51 lines (43 loc) · 1.61 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
plugins {
id 'org.springframework.boot' version '2.1.7.RELEASE'
id 'io.spring.dependency-management' version '1.0.8.RELEASE'
id 'java'
}
group = 'com.geekshirt'
version = '0.0.1-SNAPSHOT'
sourceCompatibility = '1.8'
configurations {
compileOnly {
extendsFrom annotationProcessor
}
}
repositories {
mavenCentral()
}
dependencies {
implementation 'org.springframework.boot:spring-boot-starter-data-jpa'
implementation 'org.springframework.boot:spring-boot-starter-web'
compile "io.springfox:springfox-swagger2:2.9.2"
compile "io.springfox:springfox-swagger-ui:2.9.2"
compile "io.springfox:springfox-bean-validators:2.9.2"
compile 'org.modelmapper:modelmapper:2.3.2'
compileOnly 'org.projectlombok:lombok'
compile 'org.springframework.boot:spring-boot-starter-amqp:2.1.6.RELEASE'
compile 'org.springframework.boot:spring-boot-starter-mail'
compile 'org.springframework.boot:spring-boot-starter-freemarker'
compile 'org.springframework.boot:spring-boot-starter-actuator:2.1.7.RELEASE'
compile 'org.springframework.data:spring-data-rest-hal-browser:3.0.8.RELEASE'
compile 'org.springframework.boot:spring-boot-starter-cache:2.1.6.RELEASE'
compile 'org.springframework.boot:spring-boot-starter-data-redis:2.1.6.RELEASE'
compile("mysql:mysql-connector-java")
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.3.1'
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.3.1'
runtimeOnly 'com.h2database:h2'
annotationProcessor 'org.projectlombok:lombok'
testImplementation ('org.springframework.boot:spring-boot-starter-test') {
exclude group: 'junit', module: 'junit'
}
}
tasks.test {
useJUnitPlatform()
}