Skip to content

Commit 58b2e10

Browse files
committed
update Pom
1 parent 154ad7b commit 58b2e10

8 files changed

Lines changed: 10 additions & 9 deletions

File tree

angular-app/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@
1818
"@angular/forms": "20.0.6",
1919
"@angular/localize": "20.0.6",
2020
"@angular/material": "20.0.5",
21-
"@angular/platform-browser": "20.0.6",
2221
"@angular/platform-browser-dynamic": "20.0.6",
22+
"@angular/platform-browser": "20.0.6",
2323
"@angular/router": "20.0.6",
2424
"@angular/service-worker": "20.0.6",
2525
"@egjs/ngx-view360": "4.0.0-beta.7",

pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
<maven.compiler.source>21</maven.compiler.source>
1212
<maven.compiler.target>21</maven.compiler.target>
1313
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
14-
<quarkus.version>3.22.0</quarkus.version>
14+
<quarkus.version>3.24.2</quarkus.version>
1515
<quarkus.package.jar.enabled>true</quarkus.package.jar.enabled>
1616
<quarkus.package.jar.type>uber-jar</quarkus.package.jar.type>
1717
</properties>
@@ -54,7 +54,7 @@
5454
<dependency>
5555
<groupId>org.json</groupId>
5656
<artifactId>json</artifactId>
57-
<version>20250107</version>
57+
<version>20250517</version>
5858
</dependency>
5959
<dependency>
6060
<groupId>io.quarkiverse.jdbc</groupId>
@@ -68,7 +68,7 @@
6868
<dependency>
6969
<groupId>com.fazecast</groupId>
7070
<artifactId>jSerialComm</artifactId>
71-
<version>2.11.0</version>
71+
<version>2.11.2</version>
7272
</dependency>
7373
<dependency>
7474
<groupId>org.jfree</groupId>

scripts/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
FROM openjdk:24
22

33
COPY jasmarty.jar /app/jasmarty.jar
4-
CMD ["java", "-Xmx128m", "-Xmx128m", "-jar", "/app/jasmarty.jar", "–Dlog4j2.formatMsgNoLookups=True"]
4+
CMD ["java", "--add-opens", "java.base/java.lang=ALL-UNNAMED", "-Xmx128m", "-Dlog4j2.formatMsgNoLookups=True", "-jar", "/app/jasmarty.jar"]
55
HEALTHCHECK --interval=120s --timeout=10s --retries=3 --start-period=30s CMD curl --user check:check --fail http://localhost:8080/wipf/up || kill 1

scripts/Dockerfile.arm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@ FROM arm32v7/openjdk:8-jre-alpine
22

33
RUN apk add curl
44
COPY jasmarty.jar /app/jasmarty.jar
5-
CMD ["java", "-Xmx90m", "-Xmx90m", "-jar", "/app/jasmarty.jar", "–Dlog4j2.formatMsgNoLookups=True"]
5+
CMD ["java", "--add-opens", "java.base/java.lang=ALL-UNNAMED", "-Xmx90m", "-Dlog4j2.formatMsgNoLookups=True", "-jar", "/app/jasmarty.jar"]
66
HEALTHCHECK --interval=120s --timeout=10s --retries=3 --start-period=30s CMD curl --user check:check --fail http://localhost:8080/wipf/up || kill 1

scripts/Dockerfile.arm_64

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,5 @@ FROM arm64v8/openjdk:24-bookworm
44
# Curl ist bereits installiert
55
#RUN apt-get update && apt-get install curl && apt-get clean && rm -rf /var/lib/apt/lists/*
66
COPY jasmarty.jar /app/jasmarty.jar
7-
CMD ["java", "-Xmx128m", "-Xmx128m", "-jar", "/app/jasmarty.jar", "–Dlog4j2.formatMsgNoLookups=True"]
7+
CMD ["java", "--add-opens", "java.base/java.lang=ALL-UNNAMED", "-Xmx90m", "-Dlog4j2.formatMsgNoLookups=True", "-jar", "/app/jasmarty.jar"]
88
HEALTHCHECK --interval=120s --timeout=10s --retries=3 --start-period=30s CMD curl --user check:check --fail http://localhost:8080/wipf/up || kill 1

scripts/runDevBackend.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
#!/bin/bash
2-
export JAVA_TOOL_OPTIONS="--enable-native-access=ALL-UNNAMED"
2+
export JAVA_TOOL_OPTIONS="--add-opens=java.base/java.lang=ALL-UNNAMED"
33
mvn compile quarkus:dev -f ../

scripts/startJar.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
java -jar ../target/jasmarty-1.0-SNAPSHOT-runner.jar
1+
java --add-opens java.base/java.lang=ALL-UNNAMED -Dlog4j2.formatMsgNoLookups=True -jar ../target/jasmarty-1.0-SNAPSHOT-runner.jar

src/main/resources/application.properties

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ quarkus.hibernate-orm.dialect=org.hibernate.community.dialect.SQLiteDialect
2626
quarkus.hibernate-orm.database.generation=update
2727
#quarkus.datasource.jdbc=false
2828
#quarkus.datasource.reactive=false
29+
quarkus.jvm.args=--add-opens=java.base/java.lang=ALL-UNNAMED
2930

3031
# auth
3132
quarkus.security.jdbc.enabled=true

0 commit comments

Comments
 (0)