-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
35 lines (28 loc) · 1.01 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
plugins {
id 'org.springframework.boot' version '2.5.3'
id 'io.spring.dependency-management' version '1.0.11.RELEASE'
id 'java'
}
group = 'com.albums'
version = '1.0.0'
sourceCompatibility = '11'
jar {
enabled = false
}
repositories {
mavenCentral()
}
dependencies {
implementation 'org.springframework.boot:spring-boot-starter-web'
implementation group: 'org.springframework.boot', name: 'spring-boot-starter-validation', version: '2.2.6.RELEASE'
implementation group: 'log4j', name: 'log4j', version: '1.2.17'
implementation group: 'io.rest-assured', name: 'json-path', version: '3.0.0'
implementation group: 'com.slack.api', name: 'slack-api-client', version: '1.10.0-RC2'
testRuntimeOnly "org.junit.jupiter:junit-jupiter-engine:5.7.0"
testImplementation group: 'junit', name: 'junit', version: '4.2'
testImplementation "org.junit.jupiter:junit-jupiter-api:5.7.0"
testImplementation 'org.springframework.boot:spring-boot-starter-test'
}
test {
useJUnitPlatform()
}