-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
42 lines (32 loc) · 1.42 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
plugins {
id "org.springframework.boot" version "3.2.3"
id "io.spring.dependency-management" version "1.1.4"
id "io.freefair.lombok" version "8.3"
id 'java'
}
apply from: 'version.gradle'
group 'me.oldboy.vaccalc'
version '1.0-SNAPSHOT'
repositories {
mavenCentral()
}
dependencies {
implementation 'org.springframework.boot:spring-boot-starter'
implementation 'org.springframework.boot:spring-boot-starter-web'
implementation 'org.springframework.boot:spring-boot-starter-validation'
implementation "org.springdoc:springdoc-openapi-starter-webmvc-ui:${versions.springdoc}"
testImplementation 'org.springframework.boot:spring-boot-starter-test'
testImplementation 'org.junit.jupiter:junit-jupiter-api'
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine'
testImplementation "org.testcontainers:testcontainers:${versions.testcontainers}"
testImplementation "org.testcontainers:junit-jupiter:${versions.testcontainers}"
testImplementation "io.rest-assured:rest-assured:${versions.rest_assured}"
testImplementation "org.mockito:mockito-core:${versions.mockito}"
testRuntimeOnly "org.mockito:mockito-core:${versions.mockito}"
testImplementation "org.mockito:mockito-junit-jupiter:${versions.mockito}"
testImplementation "org.assertj:assertj-core:${versions.assertj}"
testRuntimeOnly "org.assertj:assertj-core:${versions.assertj}"
}
test {
useJUnitPlatform()
}