-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuild.gradle
63 lines (43 loc) · 2.09 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
plugins {
id 'java'
}
group 'org.alx.article'
version '1.0-SNAPSHOT'
sourceCompatibility = 1.21
targetCompatibility = 1.21
repositories {
mavenCentral()
}
compileJava {
options.compilerArgs += ['--enable-preview']
}
dependencies {
implementation 'org.springframework.boot:spring-boot-starter-integration:3.2.5'
implementation 'org.springframework.integration:spring-integration-core:6.2.4'
implementation 'org.springframework:spring-jdbc:6.1.7'
// https://mvnrepository.com/artifact/org.springframework/spring-context-support
implementation group: 'org.springframework', name: 'spring-context-support', version: '5.3.35'
// https://mvnrepository.com/artifact/javax.servlet/servlet-api
implementation 'javax.servlet:servlet-api:2.5'
// https://mvnrepository.com/artifact/org.apache.httpcomponents/httpclient
implementation group: 'org.apache.httpcomponents', name: 'httpclient', version: '4.5'
// https://mvnrepository.com/artifact/org.springframework/spring-web
implementation group: 'org.springframework', name: 'spring-web', version: '3.0.2.RELEASE'
// https://mvnrepository.com/artifact/org.springframework/spring-webflux
implementation group: 'org.springframework', name: 'spring-webflux', version: '5.3.35'
// https://mvnrepository.com/artifact/com.squareup.okhttp3/okhttp
implementation group: 'com.squareup.okhttp3', name: 'okhttp', version: '4.12.0'
// https://mvnrepository.com/artifact/org.apache.commons/commons-collections4
implementation group: 'org.apache.commons', name: 'commons-collections4', version: '4.4'
implementation 'org.springframework:spring-tx:6.1.7'
implementation 'org.springframework:spring-context:6.1.7'
compileOnly 'org.projectlombok:lombok:1.18.32'
annotationProcessor 'org.projectlombok:lombok:1.18.32'
testCompileOnly 'org.projectlombok:lombok:1.18.32'
testAnnotationProcessor 'org.projectlombok:lombok:1.18.32'
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.8.1'
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.8.1'
}
test {
useJUnitPlatform()
}