ext {
problemVersion = '0.27.1'
- logstashLogbackVersion = '7.2'
+ logstashLogbackVersion = '8.1'
springCloudWiremockVersion = '4.1.5'
micrometerVersion = '1.0.0'
- liquibaseCoreVersion = '4.31.0'
+ liquibaseCoreVersion = '4.31.1'
}
dependencies {
implementation 'io.micrometer:micrometer-tracing-bridge-otel'
implementation 'io.opentelemetry:opentelemetry-exporter-zipkin'
implementation 'io.micrometer:micrometer-registry-prometheus'
- implementation 'org.apache.commons:commons-lang3:3.15.0'
+ implementation 'org.apache.commons:commons-lang3:3.17.0'
compileOnly 'org.projectlombok:lombok'
}
return versionProperties
}
+
+gitProperties {
+ // if .git directory is on the same level as the root project
+ dotGitDirectory = project.rootProject.layout.projectDirectory.dir(".git")
+}
# Darwin, MinGW, and NonStop.
#
# (3) This script is generated from the Groovy template
-# https://github.com/gradle/gradle/blob/master/subprojects/plugins/src/main/resources/org/gradle/api/internal/plugins/unixStartScript.txt
+# https://github.com/gradle/gradle/blob/HEAD/subprojects/plugins/src/main/resources/org/gradle/api/internal/plugins/unixStartScript.txt
# within the Gradle project.
#
# You can find Gradle at https://github.com/gradle/gradle/.
esac
done
-APP_HOME=$( cd "${APP_HOME:-./}" && pwd -P ) || exit
-
-APP_NAME="Gradle"
+# This is normally unused
+# shellcheck disable=SC2034
APP_BASE_NAME=${0##*/}
-
-# 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"'
+APP_HOME=$( cd "${APP_HOME:-./}" && pwd -P ) || exit
# Use the maximum available, or set MAX_FD != -1 to use that value.
MAX_FD=maximum
fi
else
JAVACMD=java
- which java >/dev/null 2>&1 || die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
+ if ! command -v java >/dev/null 2>&1
+ then
+ die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
Please set the JAVA_HOME variable in your environment to match the
location of your Java installation."
+ fi
fi
# Increase the maximum file descriptors if we can.
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
MAX_FD=$( ulimit -H -n ) ||
warn "Could not query maximum file descriptor limit"
esac
case $MAX_FD in #(
'' | soft) :;; #(
*)
+ # In POSIX sh, ulimit -n is undefined. That's why the result is checked to see if it worked.
+ # shellcheck disable=SC3045
ulimit -n "$MAX_FD" ||
warn "Could not set maximum file descriptor limit to $MAX_FD"
esac
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
// https://docs.gradle.org/current/userguide/plugins.html#sec:plugin_version_management
plugins {
id 'io.spring.dependency-management' version '1.1.7'
- id 'org.springframework.boot' version '3.3.10'
+ id 'org.springframework.boot' version '3.4.5'
id 'com.github.hierynomus.license' version '0.16.1'
- id 'com.gorylenko.gradle-git-properties' version '2.4.1'
- id 'org.openapi.generator' version '7.0.0-beta'
+ id 'com.gorylenko.gradle-git-properties' version '2.5.0'
+ id 'org.openapi.generator' version '7.13.0'
}
// https://docs.gradle.org/current/userguide/plugins.html#sec:custom_plugin_repositories
repositories {