-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
41 lines (33 loc) · 1.14 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
plugins {
id 'java'
id 'org.springframework.boot' version '3.0.4'
id 'io.spring.dependency-management' version '1.1.0'
}
sourceCompatibility = JavaVersion.VERSION_17
targetCompatibility = JavaVersion.VERSION_17
repositories {
mavenCentral()
}
dependencies {
implementation("org.springframework.boot:spring-boot-starter")
def bouncyCastleVersion = '1.72'
implementation("org.bouncycastle:bcprov-debug-jdk18on:${bouncyCastleVersion}")
implementation("org.bouncycastle:bcpkix-jdk18on:${bouncyCastleVersion}")
// There is no official bcpkix jar with debug symbols. Optionally use the local jar.
// implementation(fileTree(include: ['*.jar'], dir: 'lib'))
implementation("commons-codec:commons-codec:1.15")
implementation("org.apache.commons:commons-lang3:3.12.0")
testImplementation("org.springframework.boot:spring-boot-starter-test") {
exclude group: 'org.junit.vintage', module: 'junit-vintage-engine'
}
}
test {
useJUnitPlatform()
testLogging {
events "skipped", "passed", "failed"
}
}
wrapper {
gradleVersion = "8.0.2"
distributionType = Wrapper.DistributionType.ALL
}