forked from buerokratt/Ruuter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
48 lines (42 loc) · 1.59 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
plugins {
id 'org.springframework.boot' version '2.7.0'
id 'io.spring.dependency-management' version '1.1.0'
id 'java'
}
group = 'ee.buerokratt'
version = '0.0.1-SNAPSHOT'
configurations {
compileOnly {
extendsFrom annotationProcessor
}
}
repositories {
mavenCentral()
}
dependencies {
implementation 'org.springframework.boot:spring-boot-starter-actuator'
implementation 'org.springframework.boot:spring-boot-starter-validation'
implementation 'org.springframework.boot:spring-boot-starter-web'
implementation 'org.springframework.boot:spring-boot-starter-webflux'
implementation 'org.springframework.cloud:spring-cloud-starter-sleuth:3.1.5'
implementation 'com.fasterxml.jackson.dataformat:jackson-dataformat-yaml'
implementation 'org.graalvm.js:js:22.3.0'
implementation 'org.graalvm.js:js-scriptengine:22.3.0'
implementation 'org.apache.httpcomponents:httpclient:4.5.13'
implementation 'org.ini4j:ini4j:0.5.4'
compileOnly 'org.projectlombok:lombok'
annotationProcessor 'org.springframework.boot:spring-boot-configuration-processor'
annotationProcessor 'org.projectlombok:lombok'
testImplementation 'org.springframework.boot:spring-boot-starter-test'
testImplementation 'io.projectreactor:reactor-test'
testImplementation 'org.mockito:mockito-core:4.9.0'
testImplementation 'org.mockito:mockito-inline:4.9.0'
testImplementation 'org.mockito:mockito-junit-jupiter:4.9.0'
testImplementation "com.github.tomakehurst:wiremock-jre8:2.35.0"
}
tasks.named('test') {
useJUnitPlatform()
}
springBoot {
buildInfo()
}