-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
120 lines (85 loc) · 5 KB
/
build.gradle
File metadata and controls
120 lines (85 loc) · 5 KB
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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
plugins {
id 'java'
id "io.freefair.lombok" version "9.5.0"
id "io.github.gradle-nexus.publish-plugin" version "2.0.0"
}
group = 'ee.bitweb'
version = '5.0.0'
java {
sourceCompatibility = '17'
}
tasks.withType(JavaCompile).configureEach {
options.compilerArgs.add("-parameters")
}
apply from: "test.gradle"
apply from: "sonarcloud.gradle"
apply from: "library.gradle"
repositories {
mavenCentral()
}
dependencies {
// https://mvnrepository.com/artifact/org.apache.tomcat/tomcat-catalina
compileOnly 'org.apache.tomcat:tomcat-catalina:11.0.21'
// https://mvnrepository.com/artifact/org.springframework/spring-webmvc
compileOnly 'org.springframework:spring-webmvc:7.0.7'
// https://mvnrepository.com/artifact/org.springframework/spring-tx
compileOnly 'org.springframework:spring-tx:7.0.7'
// https://mvnrepository.com/artifact/org.springframework.boot/spring-boot-starter-security
compileOnly 'org.springframework.boot:spring-boot-starter-security:4.0.6'
// https://mvnrepository.com/artifact/org.springframework.amqp/spring-amqp
compileOnly 'org.springframework.boot:spring-boot-starter-amqp:4.0.6'
// https://mvnrepository.com/artifact/org.springframework.boot/spring-boot-configuration-processor
annotationProcessor 'org.springframework.boot:spring-boot-configuration-processor:4.0.6'
// https://mvnrepository.com/artifact/org.springframework.boot/spring-boot-starter-actuator
compileOnly 'org.springframework.boot:spring-boot-starter-actuator:4.0.6'
// https://mvnrepository.com/artifact/org.springframework.boot/spring-boot-health (new in Spring Boot 4)
compileOnly 'org.springframework.boot:spring-boot-health:4.0.6'
// https://mvnrepository.com/artifact/org.springframework.boot/spring-boot-autoconfigure
compileOnly 'org.springframework.boot:spring-boot-autoconfigure:4.0.6'
// https://mvnrepository.com/artifact/org.springframework.boot/spring-boot-starter-validation
compileOnly 'org.springframework.boot:spring-boot-starter-validation:4.0.6'
// Jackson 2.x - required for Retrofit converter-jackson (Retrofit doesn't support Jackson 3 yet)
compileOnly 'com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.21.3'
// Jackson 3.x - required for Spring Boot 4 (ObjectMapper, ControllerAdvisor, Audit module)
compileOnly 'tools.jackson.core:jackson-databind:3.1.3'
// Spring Boot Jackson - provides JsonMapperBuilderCustomizer
compileOnly 'org.springframework.boot:spring-boot-jackson:4.0.6'
// https://mvnrepository.com/artifact/jakarta.validation/jakarta.validation-api
compileOnly 'jakarta.validation:jakarta.validation-api:3.1.1'
// https://mvnrepository.com/artifact/com.squareup.retrofit2/retrofit
compileOnly 'com.squareup.retrofit2:retrofit:3.0.0'
// https://mvnrepository.com/artifact/com.squareup.retrofit2/converter-jackson
compileOnly 'com.squareup.retrofit2:converter-jackson:3.0.0'
// https://mvnrepository.com/artifact/com.squareup.okhttp3/logging-interceptor
compileOnly 'com.squareup.okhttp3:logging-interceptor:5.3.2'
// https://mvnrepository.com/artifact/de.siegmar/logback-gelf
compileOnly 'de.siegmar:logback-gelf:6.1.2'
// https://mvnrepository.com/artifact/org.springframework.boot/spring-boot-starter-web
testImplementation 'org.springframework.boot:spring-boot-starter-web:4.0.6'
// https://mvnrepository.com/artifact/org.springframework.boot/spring-boot-starter-test
testImplementation 'org.springframework.boot:spring-boot-starter-test:4.0.6'
// https://mvnrepository.com/artifact/org.springframework.boot/spring-boot-webmvc-test (new in Spring Boot 4 for MockMvc testing)
testImplementation 'org.springframework.boot:spring-boot-webmvc-test:4.0.6'
// https://mvnrepository.com/artifact/org.springframework.boot/spring-boot-starter-security
testImplementation 'org.springframework.boot:spring-boot-starter-security:4.0.6'
// https://mvnrepository.com/artifact/org.springframework.amqp/spring-amqp
testImplementation 'org.springframework.boot:spring-boot-starter-amqp:4.0.6'
// https://mvnrepository.com/artifact/org.json/json
testImplementation 'org.json:json:20251224'
// https://mvnrepository.com/artifact/ee.bitweb/spring-test-core
testImplementation 'ee.bitweb:spring-test-core:2.0.1'
// https://mvnrepository.com/artifact/org.mockito/mockito-core
testImplementation 'org.mockito:mockito-core:5.23.0'
// https://mvnrepository.com/artifact/org.mockito/mockito-junit-jupiter
testImplementation 'org.mockito:mockito-junit-jupiter:5.23.0'
// https://mvnrepository.com/artifact/org.mock-server/mockserver-netty
testImplementation('org.mock-server:mockserver-netty:5.15.0') {
exclude group: 'junit', module: 'junit'
}
// https://mvnrepository.com/artifact/org.testcontainers/testcontainers
testImplementation 'org.testcontainers:testcontainers:2.0.5'
testRuntimeOnly 'org.junit.platform:junit-platform-launcher'
}
configurations {
testImplementation.extendsFrom compileOnly
}