-
Notifications
You must be signed in to change notification settings - Fork 23
/
build.gradle
33 lines (26 loc) · 1.13 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
plugins {
id 'org.springframework.boot' version '3.3.4'
id 'io.spring.dependency-management' version '1.1.6'
}
subprojects {
repositories {
mavenCentral()
}
apply plugin: 'java'
apply plugin: 'org.springframework.boot'
apply plugin: 'io.spring.dependency-management'
dependencies {
testImplementation platform('org.junit:junit-bom:5.11.1')
testImplementation 'org.junit.jupiter:junit-jupiter'
testImplementation 'org.springframework.boot:spring-boot-starter-test'
implementation 'org.springframework.boot:spring-boot-starter'
developmentOnly 'org.springframework.boot:spring-boot-devtools'
implementation 'org.kohsuke:github-api:1.326'
// implementation 'com.fasterxml.jackson.core:jackson-core:2.18.0'
// implementation 'com.fasterxml.jackson.core:jackson-databind:2.18.0'
implementation 'com.fasterxml.jackson.dataformat:jackson-dataformat-xml:2.17.2'
implementation 'com.google.code.gson:gson:2.11.0'
implementation 'com.contrastsecurity:java-sarif:2.0'
testImplementation "org.mockito:mockito-core:5.+"
}
}