10BC0 Bump the gradle-version-updates group across 1 directory with 13 updates by dependabot[bot] · Pull Request #2970 · secureCodeBox/secureCodeBox · GitHub
[go: up one dir, main page]

Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # Needed to get PR information, if any
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
working-directory: hooks/${{ matrix.unit }}/hook
run: ./gradlew build --info
run: ./gradlew build --info --warning-mode all

# ---- Build Stage ----

Expand Down
28 changes: 15 additions & 13 deletions hooks/persistence-defectdojo/hook/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@

plugins {
id "java"
id "io.freefair.lombok" version "8.12.1"
id "io.freefair.lombok" version "8.13.1"
// https://github.com/ben-manes/gradle-versions-plugin
// Run: ./gradlew dependencyUpdates -Drevision=release
id "com.github.ben-manes.versions" version "0.52.0"
id "org.sonarqube" version "6.0.1.5171"
id "org.sonarqube" version "6.1.0.5360"
}

group = "io.securecodebox"
Expand All @@ -24,22 +24,24 @@ repositories {
dependencies {
implementation group: "io.securecodebox", name: "defectdojo-client", version: "2.0.1"
implementation group: "io.kubernetes", name: "client-java", version: "20.0.1"
implementation group: "org.springframework", name: "spring-web", version: "6.2.3"
implementation group: "com.fasterxml.jackson.core", name: "jackson-core", version: "2.18.2"
implementation group: "com.fasterxml.jackson.core", name: "jackson-annotations", version: "2.18.2"
implementation group: "com.fasterxml.jackson.core", name: "jackson-databind", version: "2.18.2"
implementation group: "com.fasterxml.jackson.datatype", name: "jackson-datatype-jsr310", version: "2.18.2"
implementation group: "org.slf4j", name: "slf4j-api", version: "2.0.16"
implementation group: "org.slf4j", name: "slf4j-log4j12", version: "2.0.16"
implementation group: "org.springframework", name: "spring-web", version: "6.2.5"
implementation group: "com.fasterxml.jackson.core", name: "jackson-core", version: "2.18.3"
implementation group: "com.fasterxml.jackson.core", name: "jackson-annotations", version: "2.18.3"
implementation group: "com.fasterxml.jackson.core", name: "jackson-databind", version: "2.18.3"
implementation group: "com.fasterxml.jackson.datatype", name: "jackson-datatype-jsr310", version: "2.18.3"
implementation group: "org.slf4j", name: "slf4j-api", version: "2.0.17"
implementation group: "org.slf4j", name: "slf4j-log4j12", version: "2.0.17"
// If I try to notate this like the others (with separate strings) I got errors. No idea why sh... Gradle
// want it like this. It is the official documented example:
// https://github.com/junit-team/junit5-samples/blob/r5.10.0/junit5-jupiter-starter-gradle/build.gradle
testImplementation(platform("org.junit:junit-bom:5.11.4"))
testImplementation(platform("org.junit:junit-bom:5.12.1"))
testImplementation("org.junit.jupiter:junit-jupiter")
testImplementation group: "org.mockito", name: "mockito-core", version: "5.15.2"
testImplementation group: "org.mockito", name: "mockito-junit-jupiter", version: "5.15.2"
testImplementation group: "org.mockito", name: "mockito-core", version: "5.17.0"
testImplementation group: "org.mockito", name: "mockito-junit-jupiter", version: "5.17.0"
testImplementation group: 'org.hamcrest', name: 'java-hamcrest', version: '2.0.0.0'
testImplementation group: 'uk.org.webcompere', name: 'system-stubs-jupiter', version: '2.1.7'
testImplementation group: 'uk.org.webcompere', name: 'system-stubs-jupiter', version: '2.1.8'
testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine")
testRuntimeOnly("org.junit.platform:junit-platform-launcher")
}

java {
Expand Down
Loading
0