Skip to content

Commit

Permalink
Bump the gradle-dependencies group across 1 directory with 6 updates
Browse files Browse the repository at this point in the history
Bumps the gradle-dependencies group with 6 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [org.hamcrest:hamcrest-core](https://github.com/hamcrest/JavaHamcrest) | `2.2` | `3.0` |
| [org.apache.commons:commons-csv](https://github.com/apache/commons-csv) | `1.11.0` | `1.12.0` |
| [org.junit.jupiter:junit-jupiter-api](https://github.com/junit-team/junit5) | `5.10.3` | `5.11.3` |
| [org.junit.jupiter:junit-jupiter-engine](https://github.com/junit-team/junit5) | `5.10.3` | `5.11.3` |
| [org.junit.platform:junit-platform-commons](https://github.com/junit-team/junit5) | `1.10.3` | `1.11.3` |
| com.github.spotbugs | `6.0.19` | `6.0.25` |



Updates `org.hamcrest:hamcrest-core` from 2.2 to 3.0
- [Release notes](https://github.com/hamcrest/JavaHamcrest/releases)
- [Changelog](https://github.com/hamcrest/JavaHamcrest/blob/master/CHANGES.md)
- [Commits](hamcrest/JavaHamcrest@v2.2...v3.0)

Updates `org.apache.commons:commons-csv` from 1.11.0 to 1.12.0
- [Changelog](https://github.com/apache/commons-csv/blob/master/RELEASE-NOTES.txt)
- [Commits](apache/commons-csv@rel/commons-csv-1.11.0...rel/commons-csv-1.12.0)

Updates `org.junit.jupiter:junit-jupiter-api` from 5.10.3 to 5.11.3
- [Release notes](https://github.com/junit-team/junit5/releases)
- [Commits](junit-team/junit5@r5.10.3...r5.11.3)

Updates `org.junit.jupiter:junit-jupiter-engine` from 5.10.3 to 5.11.3
- [Release notes](https://github.com/junit-team/junit5/releases)
- [Commits](junit-team/junit5@r5.10.3...r5.11.3)

Updates `org.junit.platform:junit-platform-commons` from 1.10.3 to 1.11.3
- [Release notes](https://github.com/junit-team/junit5/releases)
- [Commits](https://github.com/junit-team/junit5/commits)

Updates `com.github.spotbugs` from 6.0.19 to 6.0.25

---
updated-dependencies:
- dependency-name: org.hamcrest:hamcrest-core
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: gradle-dependencies
- dependency-name: org.apache.commons:commons-csv
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gradle-dependencies
- dependency-name: org.junit.jupiter:junit-jupiter-api
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gradle-dependencies
- dependency-name: org.junit.jupiter:junit-jupiter-engine
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gradle-dependencies
- dependency-name: org.junit.platform:junit-platform-commons
  dependency-type: direct:production
  update-type: version-update:semver-minor
  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]>
  • Loading branch information
dependabot[bot] authored Nov 1, 2024
1 parent 3858803 commit 6d050d9
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 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.19'
id 'com.github.spotbugs' version '6.0.25'
// With this plugin, we can build a Windows executable
id 'edu.sc.seis.launch4j' version '3.0.6'
}
Expand All @@ -36,20 +36,20 @@ repositories {

dependencies {
implementation 'org.openpnp:opencv:4.9.0-0'
implementation 'org.hamcrest:hamcrest-core:2.2'
implementation 'org.hamcrest:hamcrest-core:3.0'
implementation 'com.massisframework.jme3:jme3-core:3.1.0-beta2'
implementation 'org.apache.commons:commons-math3:3.6.1'
implementation 'org.apache.commons:commons-csv:1.11.0'
implementation 'org.apache.commons:commons-csv:1.12.0'
implementation 'com.google.code.gson:gson:2.11.0'
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.3'
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.10.3'
testRuntimeOnly 'org.junit.platform:junit-platform-commons:1.10.3'
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.11.3'
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.11.3'
testRuntimeOnly 'org.junit.platform:junit-platform-commons:1.11.3'
}

// JUnit 5 support
Expand Down

0 comments on commit 6d050d9

Please sign in to comment.