-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
33 lines (27 loc) · 869 Bytes
/
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
plugins {
id 'java'
id 'idea'
id 'org.springframework.boot' version '2.1.6.RELEASE'
id "io.spring.dependency-management" version "1.0.8.RELEASE"
}
group 'jfoeh'
version '1.0-SNAPSHOT'
repositories {
mavenCentral()
}
dependencies {
// Spring
implementation 'org.springframework.boot:spring-boot-starter-web'
implementation group: 'org.springframework.retry', name: 'spring-retry', version: '1.2.4.RELEASE'
// Required for Spring Retry
implementation group: 'org.aspectj', name: 'aspectjweaver', version: '1.9.4'
// JUnit
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.3.2'
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.3.2'
testImplementation('org.springframework.boot:spring-boot-starter-test') {
exclude group: 'junit', module: 'junit'
}
}
test {
useJUnitPlatform()
}