Skip to content

Commit

Permalink
Bump the gradle-dependencies group with 5 updates (#33)
Browse files Browse the repository at this point in the history
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](junit-team/junit5@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](junit-team/junit5@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] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
  • Loading branch information
dependabot[bot] authored Mar 20, 2024
1 parent b10e701 commit 7f8b2c6
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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'
}
Expand All @@ -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
Expand Down

0 comments on commit 7f8b2c6

Please sign in to comment.