Skip to content
Commits on Source (7)
## [1.1.7](https://git.griefed.de/Griefed/VersionChecker/compare/1.1.6...1.1.7) (2023-05-05)
### 🛠 Fixes
* **deps:** update dependency org.apache.logging.log4j:log4j-core to v2.20.0 ([4ac1a9b](https://git.griefed.de/Griefed/VersionChecker/commit/4ac1a9bba1467087bc62159fb8ae15b0c945e3a3))
* **deps:** update dependency org.jetbrains:annotations to v24 ([68bb5eb](https://git.griefed.de/Griefed/VersionChecker/commit/68bb5eb89221ff35840b08a72746e7f91f6bb9c4))
### Other
* **deps:** update dependency gradle to v8 ([6e4bbd4](https://git.griefed.de/Griefed/VersionChecker/commit/6e4bbd49ee67b5274cecda8481715e5a9b37c0c8))
## [1.1.6](https://git.griefed.de/Griefed/VersionChecker/compare/1.1.5...1.1.6) (2023-05-05)
......
......@@ -40,10 +40,10 @@ sourceSets {
}
dependencies {
implementation 'org.apache.logging.log4j:log4j-core:2.19.0'
implementation 'org.apache.logging.log4j:log4j-core:2.20.0'
implementation 'com.fasterxml.jackson.core:jackson-databind:2.14.2'
implementation 'org.jetbrains:annotations:23.0.0'
implementation 'org.jetbrains:annotations:24.0.1'
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.9.3'
testImplementation 'org.junit.platform:junit-platform-commons:1.9.3'
......
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-7.6.1-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.1.1-bin.zip
networkTimeout=10000
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
......@@ -85,9 +85,6 @@ done
APP_BASE_NAME=${0##*/}
APP_HOME=$( cd "${APP_HOME:-./}" && pwd -P ) || exit
# Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
DEFAULT_JVM_OPTS='"-Xmx64m" "-Xms64m"'
# Use the maximum available, or set MAX_FD != -1 to use that value.
MAX_FD=maximum
......@@ -144,7 +141,7 @@ if ! "$cygwin" && ! "$darwin" && ! "$nonstop" ; then
case $MAX_FD in #(
max*)
# In POSIX sh, ulimit -H is undefined. That's why the result is checked to see if it worked.
# shellcheck disable=SC3045
# shellcheck disable=SC3045
MAX_FD=$( ulimit -H -n ) ||
warn "Could not query maximum file descriptor limit"
esac
......@@ -152,7 +149,7 @@ if ! "$cygwin" && ! "$darwin" && ! "$nonstop" ; then
'' | soft) :;; #(
*)
# In POSIX sh, ulimit -n is undefined. That's why the result is checked to see if it worked.
# shellcheck disable=SC3045
# shellcheck disable=SC3045
ulimit -n "$MAX_FD" ||
warn "Could not set maximum file descriptor limit to $MAX_FD"
esac
......@@ -197,6 +194,10 @@ if "$cygwin" || "$msys" ; then
done
fi
# Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
DEFAULT_JVM_OPTS='"-Xmx64m" "-Xms64m"'
# Collect all arguments for the java command;
# * $DEFAULT_JVM_OPTS, $JAVA_OPTS, and $GRADLE_OPTS can contain fragments of
# shell script including quotes and variable substitutions, so put them in
......