Skip to content

Commit

Permalink
Update Gradle and dependencies. (#140)
Browse files Browse the repository at this point in the history
  • Loading branch information
mfl28 authored Oct 26, 2024
1 parent ac64a66 commit a0b3913
Show file tree
Hide file tree
Showing 5 changed files with 24 additions and 19 deletions.
32 changes: 16 additions & 16 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -23,12 +23,12 @@ plugins {
id 'com.github.ben-manes.versions' version '0.51.0'
id 'org.beryx.jlink' version '3.0.1'
id 'jacoco'
id 'net.ltgt.errorprone' version '4.0.1'
id 'net.ltgt.errorprone' version '4.1.0'
id 'org.sonarqube' version '5.1.0.4882'
id 'org.ysb33r.cloudci' version '4.0.0'
id 'org.ysb33r.cloudci' version '4.0.1'
id 'com.github.hierynomus.license' version '0.16.1'
id 'io.miret.etienne.sass' version '1.5.0'
id "com.ryandens.javaagent-test" version "0.5.1"
id 'io.miret.etienne.sass' version '1.5.1'
id "com.ryandens.javaagent-test" version "0.7.0"
}

group 'com.github.mfl28'
Expand All @@ -40,7 +40,7 @@ repositories {

dependencies {
// Junit (Unit testing)
testImplementation 'org.junit.jupiter:junit-jupiter:5.10.3'
testImplementation 'org.junit.jupiter:junit-jupiter:5.11.3'
testRuntimeOnly 'org.junit.platform:junit-platform-launcher'

// TestFx UI TesTing // https://mvnrepository.com/artifact/org.testfx/testfx-junit5
Expand All @@ -49,29 +49,29 @@ dependencies {
}

// https://mvnrepository.com/artifact/nl.jqno.equalsverifier/equalsverifier
testImplementation 'nl.jqno.equalsverifier:equalsverifier:3.16.1'
testImplementation 'nl.jqno.equalsverifier:equalsverifier:3.17.1'

// Hamcrest https://mvnrepository.com/artifact/org.hamcrest/hamcrest
testImplementation 'org.hamcrest:hamcrest:2.2'
testImplementation 'org.hamcrest:hamcrest:3.0'

// Mockito https://mvnrepository.com/artifact/org.mockito/mockito-inline
testImplementation 'org.mockito:mockito-inline:5.2.0'

// Mockito-Junit https://mvnrepository.com/artifact/org.mockito/mockito-junit-jupiter
testImplementation 'org.mockito:mockito-junit-jupiter:5.12.0'
testImplementation 'org.mockito:mockito-junit-jupiter:5.14.2'

testImplementation 'com.google.jimfs:jimfs:1.3.0'

testJavaagent "net.bytebuddy:byte-buddy-agent:1.14.18"
testJavaagent "net.bytebuddy:byte-buddy-agent:1.15.7"

// Commons Collections https://mvnrepository.com/artifact/org.apache.commons/commons-collections4
implementation 'org.apache.commons:commons-collections4:4.4'

// Commons Lang https://mvnrepository.com/artifact/org.apache.commons/commons-lang3
implementation 'org.apache.commons:commons-lang3:3.14.0'
implementation 'org.apache.commons:commons-lang3:3.17.0'

// https://mvnrepository.com/artifact/commons-io/commons-io
implementation 'commons-io:commons-io:2.16.1'
implementation 'commons-io:commons-io:2.17.0'

// ControlsFX https://mvnrepository.com/artifact/org.controlsfx/controlsfx
implementation('org.controlsfx:controlsfx:11.2.1') {
Expand All @@ -82,19 +82,19 @@ dependencies {
implementation 'com.github.ben-manes.caffeine:caffeine:3.1.8'

// Gradle plugin to use the error-prone compiler https://github.com/tbroyer/gradle-errorprone-plugin
errorprone 'com.google.errorprone:error_prone_core:2.28.0'
errorprone 'com.google.errorprone:error_prone_core:2.35.1'

// Google GSON https://github.com/google/gson
implementation 'com.google.code.gson:gson:2.11.0'

// Jersey REST client https://mvnrepository.com/artifact/org.glassfish.jersey.core/jersey-client
implementation 'org.glassfish.jersey.core:jersey-client:3.1.7'
implementation 'org.glassfish.jersey.core:jersey-client:3.1.9'

// HK2 InjectionManager https://mvnrepository.com/artifact/org.glassfish.jersey.inject/jersey-hk2
implementation 'org.glassfish.jersey.inject:jersey-hk2:3.1.7'
implementation 'org.glassfish.jersey.inject:jersey-hk2:3.1.9'

// Jersey Multipart https://mvnrepository.com/artifact/org.glassfish.jersey.media/jersey-media-multipart
implementation 'org.glassfish.jersey.media:jersey-media-multipart:3.1.7'
implementation 'org.glassfish.jersey.media:jersey-media-multipart:3.1.9'

// Jaxb runtime https://mvnrepository.com/artifact/org.glassfish.jaxb/jaxb-runtime
implementation 'org.glassfish.jaxb:jaxb-runtime:4.0.5'
Expand Down Expand Up @@ -227,7 +227,7 @@ jlink {
jpackage {
installerOptions += [
'--app-version', version,
'--copyright', 'Copyright 2023, Markus Fleischhacker',
'--copyright', 'Copyright 2024, Markus Fleischhacker',
'--description', 'Graphical image annotation application',
'--license-file', 'LICENSE',
'--vendor', 'Markus Fleischhacker',
Expand Down
Binary file modified gradle/wrapper/gradle-wrapper.jar
Binary file not shown.
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.9-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.10.2-bin.zip
networkTimeout=10000
validateDistributionUrl=true
zipStoreBase=GRADLE_USER_HOME
Expand Down
7 changes: 5 additions & 2 deletions gradlew
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,8 @@
# See the License for the specific language governing permissions and
# limitations under the License.
#
# SPDX-License-Identifier: Apache-2.0
#

##############################################################################
#
Expand Down Expand Up @@ -55,7 +57,7 @@
# Darwin, MinGW, and NonStop.
#
# (3) This script is generated from the Groovy template
# https://github.com/gradle/gradle/blob/HEAD/subprojects/plugins/src/main/resources/org/gradle/api/internal/plugins/unixStartScript.txt
# https://github.com/gradle/gradle/blob/HEAD/platforms/jvm/plugins-application/src/main/resources/org/gradle/api/internal/plugins/unixStartScript.txt
# within the Gradle project.
#
# You can find Gradle at https://github.com/gradle/gradle/.
Expand Down Expand Up @@ -84,7 +86,8 @@ done
# shellcheck disable=SC2034
APP_BASE_NAME=${0##*/}
# Discard cd standard output in case $CDPATH is set (https://github.com/gradle/gradle/issues/25036)
APP_HOME=$( cd "${APP_HOME:-./}" > /dev/null && pwd -P ) || exit
APP_HOME=$( cd -P "${APP_HOME:-./}" > /dev/null && printf '%s
' "$PWD" ) || exit

# Use the maximum available, or set MAX_FD != -1 to use that value.
MAX_FD=maximum
Expand Down
2 changes: 2 additions & 0 deletions gradlew.bat
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,8 @@
@rem See the License for the specific language governing permissions and
@rem limitations under the License.
@rem
@rem SPDX-License-Identifier: Apache-2.0
@rem

@if "%DEBUG%"=="" @echo off
@rem ##########################################################################
Expand Down

0 comments on commit a0b3913

Please sign in to comment.