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 {
137
137
)
138
138
}
139
139
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 {
141
148
manifest {
142
149
attributes(
143
150
// 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 19
19
20
20
FROM jupyter/all-spark-notebook:spark-3.5.0
21
21
22
+ ENV LANGUAGE='en_US:en'
23
+
22
24
COPY --chown=jovyan client /home/jovyan/client
23
25
COPY --chown=jovyan regtests/requirements.txt /tmp
24
26
RUN 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
159
159
quarkus.index-dependency.guava.artifact-id =guava
160
160
quarkus.index-dependency.protobuf.group-id =com.google.protobuf
161
161
quarkus.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
21
21
ARG POLARIS_HOST=polaris
22
22
ENV POLARIS_HOST=$POLARIS_HOST
23
23
ENV SPARK_HOME=/opt/spark
24
+ ENV LANGUAGE='en_US:en'
24
25
25
26
USER root
26
27
RUN apt update
Original file line number Diff line number Diff line change 19
19
20
20
FROM ubuntu:24.04 AS hugo
21
21
22
+ ENV LANGUAGE='en_US:en'
23
+
22
24
RUN apt-get update
23
25
RUN apt-get install --yes golang hugo asciidoctor npm curl
24
26
RUN apt-get clean
You can’t perform that action at this time.
0 commit comments