-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathbuild.gradle
71 lines (57 loc) · 2.27 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
import org.springframework.boot.loader.tools.LoaderImplementation
plugins {
id 'org.springframework.boot' version '3.2.5'
id 'io.spring.dependency-management' version '1.1.3'
id 'java'
id "org.sonarqube" version "3.5.0.2730"
}
bootJar {
loaderImplementation = LoaderImplementation.CLASSIC
}
group = 'ee.buerokratt'
version = '0.0.1-SNAPSHOT'
configurations {
compileOnly {
extendsFrom annotationProcessor
}
}
repositories {
mavenCentral()
}
test {
exclude '**/*'
}
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 platform('io.opentelemetry:opentelemetry-bom:1.15.0')
implementation 'io.opentelemetry:opentelemetry-api'
implementation 'io.opentelemetry:opentelemetry-sdk'
implementation 'io.opentelemetry:opentelemetry-context'
implementation 'io.opentelemetry:opentelemetry-exporter-logging'
implementation 'com.fasterxml.jackson.dataformat:jackson-dataformat-yaml'
implementation 'org.graalvm.js:js:23.0.1'
implementation 'org.graalvm.js:js-scriptengine:23.0.1'
implementation 'org.apache.httpcomponents:httpclient:4.5.13'
implementation 'org.ini4j:ini4j:0.5.4'
implementation 'io.swagger.core.v3:swagger-annotations:2.2.21' // For annotations approach
implementation 'io.swagger.core.v3:swagger-core:2.2.21' // For programmatic approach
implementation 'commons-codec:commons-codec:1.17.0'
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:5.6.0'
testImplementation 'org.mockito:mockito-inline:4.9.0'
testImplementation 'org.mockito:mockito-junit-jupiter:5.6.0'
testImplementation 'com.github.tomakehurst:wiremock-jre8:2.35.1'
}
tasks.named('test') {
useJUnitPlatform()
}
springBoot {
buildInfo()
}