File tree Expand file tree Collapse file tree 5 files changed +17
-1
lines changed
build-logic/src/main/kotlin
getting-started/spark/notebooks
quarkus/defaults/src/main/resources Expand file tree Collapse file tree 5 files changed +17
-1
lines changed Original file line number Diff line number Diff line change @@ -137,7 +137,14 @@ dependencies {
137137 )
138138}
139139
140- tasks.withType(Jar ::class ).configureEach {
140+ tasks.withType<Test >().configureEach {
141+ systemProperty(" file.encoding" , " UTF-8" )
142+ systemProperty(" user.language" , " en" )
143+ systemProperty(" user.country" , " US" )
144+ systemProperty(" user.variant" , " " )
145+ }
146+
147+ tasks.withType<Jar >().configureEach {
141148 manifest {
142149 attributes(
143150 // Do not add any (more or less) dynamic information to jars, because that makes Gradle's
Original file line number Diff line number Diff line change 1919
2020FROM jupyter/all-spark-notebook:spark-3.5.0
2121
22+ ENV LANGUAGE='en_US:en'
23+
2224COPY --chown=jovyan client /home/jovyan/client
2325COPY --chown=jovyan regtests/requirements.txt /tmp
2426RUN pip install -r /tmp/requirements.txt && \
Original file line number Diff line number Diff line change @@ -159,3 +159,7 @@ quarkus.index-dependency.guava.group-id=com.google.guava
159159quarkus.index-dependency.guava.artifact-id =guava
160160quarkus.index-dependency.protobuf.group-id =com.google.protobuf
161161quarkus.index-dependency.protobuf.artifact-id =protobuf-java
162+
163+ # force the locale, just in case the system's using another default locale
164+ quarkus.default-locale =en_US
165+
Original file line number Diff line number Diff line change @@ -21,6 +21,7 @@ FROM docker.io/apache/spark:3.5.5-java17-python3
2121ARG POLARIS_HOST=polaris
2222ENV POLARIS_HOST=$POLARIS_HOST
2323ENV SPARK_HOME=/opt/spark
24+ ENV LANGUAGE='en_US:en'
2425
2526USER root
2627RUN apt update
Original file line number Diff line number Diff line change 1919
2020FROM ubuntu:24.04 AS hugo
2121
22+ ENV LANGUAGE='en_US:en'
23+
2224RUN apt-get update
2325RUN apt-get install --yes golang hugo asciidoctor npm curl
2426RUN apt-get clean
You can’t perform that action at this time.
0 commit comments