From 92bc1a9d7492b350049115e089d7e6f685b277ba Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 20 Mar 2024 08:44:58 +0000 Subject: [PATCH] Bump the gradle-dependencies group with 5 updates Bumps the gradle-dependencies group with 5 updates: | Package | From | To | | --- | --- | --- | | [org.json:json](https://github.com/douglascrockford/JSON-java) | `20231013` | `20240303` | | [org.junit.jupiter:junit-jupiter-api](https://github.com/junit-team/junit5) | `5.10.1` | `5.10.2` | | [org.junit.jupiter:junit-jupiter-engine](https://github.com/junit-team/junit5) | `5.10.1` | `5.10.2` | | [org.junit.platform:junit-platform-commons](https://github.com/junit-team/junit5) | `1.10.1` | `1.10.2` | | com.github.spotbugs | `6.0.7` | `6.0.8` | Updates `org.json:json` from 20231013 to 20240303 - [Release notes](https://github.com/douglascrockford/JSON-java/releases) - [Changelog](https://github.com/stleary/JSON-java/blob/master/docs/RELEASES.md) - [Commits](https://github.com/douglascrockford/JSON-java/commits) Updates `org.junit.jupiter:junit-jupiter-api` from 5.10.1 to 5.10.2 - [Release notes](https://github.com/junit-team/junit5/releases) - [Commits](https://github.com/junit-team/junit5/compare/r5.10.1...r5.10.2) Updates `org.junit.jupiter:junit-jupiter-engine` from 5.10.1 to 5.10.2 - [Release notes](https://github.com/junit-team/junit5/releases) - [Commits](https://github.com/junit-team/junit5/compare/r5.10.1...r5.10.2) Updates `org.junit.platform:junit-platform-commons` from 1.10.1 to 1.10.2 - [Release notes](https://github.com/junit-team/junit5/releases) - [Commits](https://github.com/junit-team/junit5/commits) Updates `com.github.spotbugs` from 6.0.7 to 6.0.8 --- updated-dependencies: - dependency-name: org.json:json dependency-type: direct:production update-type: version-update:semver-major dependency-group: gradle-dependencies - dependency-name: org.junit.jupiter:junit-jupiter-api dependency-type: direct:production update-type: version-update:semver-patch dependency-group: gradle-dependencies - dependency-name: org.junit.jupiter:junit-jupiter-engine dependency-type: direct:production update-type: version-update:semver-patch dependency-group: gradle-dependencies - dependency-name: org.junit.platform:junit-platform-commons dependency-type: direct:production update-type: version-update:semver-patch dependency-group: gradle-dependencies - dependency-name: com.github.spotbugs dependency-type: direct:production update-type: version-update:semver-patch dependency-group: gradle-dependencies ... Signed-off-by: dependabot[bot] --- build.gradle | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/build.gradle b/build.gradle index 88a1bc4..580b0bf 100644 --- a/build.gradle +++ b/build.gradle @@ -14,7 +14,7 @@ plugins { // Checkstyle enforces consistent formatting rules across the project. id 'checkstyle' // Spotbugs is a static analyzer for java - id 'com.github.spotbugs' version '6.0.7' + id 'com.github.spotbugs' version '6.0.8' // With this plugin, we can build a Windows executable id 'edu.sc.seis.launch4j' version '3.0.5' } @@ -41,15 +41,15 @@ dependencies { implementation 'org.apache.commons:commons-math3:3.6.1' implementation 'org.apache.commons:commons-csv:1.10.0' implementation 'com.google.code.gson:gson:2.10.1' - implementation 'org.json:json:20231013' + implementation 'org.json:json:20240303' // Use JavaFX MeshImporter for STL files implementation 'us.ihmc:jimStlMeshImporterJFX:0.7' // Use JUnit test framework - testImplementation 'org.junit.jupiter:junit-jupiter-api:5.10.1' - testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.10.1' - testRuntimeOnly 'org.junit.platform:junit-platform-commons:1.10.1' + testImplementation 'org.junit.jupiter:junit-jupiter-api:5.10.2' + testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.10.2' + testRuntimeOnly 'org.junit.platform:junit-platform-commons:1.10.2' } // JUnit 5 support