Skip to content

Commit

Permalink
Update all minor versions
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate[bot] committed Nov 3, 2023
1 parent a801426 commit 2a86986
Show file tree
Hide file tree
Showing 8 changed files with 22 additions and 22 deletions.
2 changes: 1 addition & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ ci:
- jsonschema-validator
repos:
- repo: https://github.com/macisamuele/language-formatters-pre-commit-hooks
rev: v2.10.0
rev: v2.11.0
hooks:
- id: pretty-format-java
args:
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM gradle:8.3.0-jdk11 AS builder
FROM gradle:8.4-jdk11 AS builder

RUN --mount=type=cache,target=/var/cache,sharing=locked \
--mount=type=cache,target=/root/.cache \
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ buildscript {
defaultTasks 'build'

wrapper {
gradleVersion = '8.3'
gradleVersion = '8.4'
distributionType = Wrapper.DistributionType.ALL
}

Expand Down
2 changes: 1 addition & 1 deletion ci/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
c2cciutils[checks,publish]==1.6.11
pre-commit==3.4.0
pre-commit==3.5.0
18 changes: 9 additions & 9 deletions core/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -154,14 +154,14 @@ dependencies {
"io.dropwizard.metrics:metrics-logback:4.2.21",
)
geotools(
"org.geotools:gt-epsg-hsql:29.2",
"org.geotools:gt-render:29.2",
"org.geotools:gt-geojson:29.2",
"org.geotools:gt-geotiff:29.2",
"org.geotools:gt-wms:29.2",
"org.geotools.xsd:gt-xsd-gml3:29.2",
"org.geotools:gt-svg:29.2",
"org.geotools:gt-cql:29.2"
"org.geotools:gt-epsg-hsql:29.3",
"org.geotools:gt-render:29.3",
"org.geotools:gt-geojson:29.3",
"org.geotools:gt-geotiff:29.3",
"org.geotools:gt-wms:29.3",
"org.geotools.xsd:gt-xsd-gml3:29.3",
"org.geotools:gt-svg:29.3",
"org.geotools:gt-cql:29.3"
)
jasper(
"net.sf.jasperreports:jasperreports:6.20.6",
Expand All @@ -185,7 +185,7 @@ dependencies {
'com.sun.mail:javax.mail:1.6.2',
'com.amazonaws:aws-java-sdk-s3:1.12.578',
'com.adobe.xmp:xmpcore:6.1.11',
'io.sentry:sentry-logback:6.30.0',
'io.sentry:sentry-logback:6.33.0',
'net.logstash.logback:logstash-logback-encoder:7.4',
)

Expand Down
2 changes: 1 addition & 1 deletion docs/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ dependencies {
'org.ccil.cowan.tagsoup:tagsoup:1.2.1',
'com.samskivert:jmustache:1.15',
'com.google.guava:guava:32.1.3-jre',
'commons-io:commons-io:2.14.0',
'commons-io:commons-io:2.15.0',
"org.springframework:spring-beans:5.3.30",
"org.springframework:spring-web:5.3.30",
"org.springframework:spring-context:5.3.30",
Expand Down
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.3-all.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.4-all.zip
networkTimeout=10000
validateDistributionUrl=true
zipStoreBase=GRADLE_USER_HOME
Expand Down
14 changes: 7 additions & 7 deletions gradlew
Original file line number Diff line number Diff line change
Expand Up @@ -145,15 +145,15 @@ 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=SC2039,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
# shellcheck disable=SC2039,SC3045
ulimit -n "$MAX_FD" ||
warn "Could not set maximum file descriptor limit to $MAX_FD"
esac
Expand Down Expand Up @@ -202,11 +202,11 @@ 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
# double quotes to make sure that they get re-expanded; and
# * put everything else in single quotes, so that it's not re-expanded.
# Collect all arguments for the java command:
# * DEFAULT_JVM_OPTS, JAVA_OPTS, JAVA_OPTS, and optsEnvironmentVar are not allowed to contain shell fragments,
# and any embedded shellness will be escaped.
# * For example: A user cannot expect ${Hostname} to be expanded, as it is an environment variable and will be
# treated as '${Hostname}' itself on the command line.

set -- \
"-Dorg.gradle.appname=$APP_BASE_NAME" \
Expand Down

0 comments on commit 2a86986

Please sign in to comment.