-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
46 lines (37 loc) · 935 Bytes
/
build.gradle
File metadata and controls
46 lines (37 loc) · 935 Bytes
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
plugins {
id 'java'
id 'maven-publish'
}
group = 'samsung.signature'
version = '0.0.1-SNAPSHOT'
repositories {
mavenCentral()
}
dependencies {
implementation 'org.springframework:spring-webmvc:6.1.5'
implementation 'org.springframework:spring-web:6.1.5'
implementation 'com.fasterxml.jackson.core:jackson-databind:2.15.3'
implementation 'org.springframework:spring-webflux:6.1.5'
implementation 'org.springframework.data:spring-data-redis:3.2.2'
compileOnly 'org.projectlombok:lombok:1.18.30'
annotationProcessor 'org.projectlombok:lombok:1.18.30'
implementation 'org.slf4j:slf4j-api:2.0.7'
}
java {
withSourcesJar()
withJavadocJar()
}
publishing {
publications {
maven(MavenPublication) {
from components.java
}
}
}
wrapper {
gradleVersion = "9.0"
distributionType = Wrapper.DistributionType.ALL
}
test {
useJUnitPlatform()
}