This is an automated email from the ASF dual-hosted git repository.
ahuber pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/causeway-app-referenceapp.git
The following commit(s) were added to refs/heads/master by this push:
new f4dc9da pom fixes
f4dc9da is described below
commit f4dc9da793f0a119ab282c3cc9f8d75167f48396
Author: andi-huber <[email protected]>
AuthorDate: Wed Mar 11 11:59:55 2026 +0100
pom fixes
---
pom.xml | 41 -----------------------------------------
wicket/jpa/pom.xml | 26 +++++++++++++-------------
2 files changed, 13 insertions(+), 54 deletions(-)
diff --git a/pom.xml b/pom.xml
index d37936f..fe83ee8 100644
--- a/pom.xml
+++ b/pom.xml
@@ -145,47 +145,6 @@ additional
</configuration>
</plugin>
- <plugin>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-maven-plugin</artifactId>
-<!-- <version>${spring-boot.version}</version>-->
- <executions>
- <execution>
- <goals>
- <goal>repackage</goal>
- </goals>
- </execution>
- <execution>
- <id>build-info</id>
- <goals>
- <goal>build-info</goal>
- </goals>
- </execution>
- </executions>
- </plugin>
-
- <plugin>
- <groupId>com.google.cloud.tools</groupId>
- <artifactId>jib-maven-plugin</artifactId>
- <version>3.5.1</version>
- <configuration>
- <from>
- <!-- don't use slim variant, as excel export might fail
- w/
- Exception java.lang.UnsatisfiedLinkError:
- /usr/local/openjdk-24/lib/libfontmanager.so-->
- <image>eclipse-temurin:25-jdk</image>
- </from>
- </configuration>
- <dependencies>
- <dependency>
- <groupId>org.ow2.asm</groupId>
- <artifactId>asm</artifactId>
- <version>9.9.1</version>
- </dependency>
- </dependencies>
- </plugin>
-
<plugin>
<groupId>org.apache.rat</groupId>
<artifactId>apache-rat-plugin</artifactId>
diff --git a/wicket/jpa/pom.xml b/wicket/jpa/pom.xml
index 7aa0f43..139fc79 100644
--- a/wicket/jpa/pom.xml
+++ b/wicket/jpa/pom.xml
@@ -92,7 +92,7 @@
</goals>
<configuration>
<additionalProperties>
-
<java.version>${java.version}</java.version>
+
<java.version>${maven.compiler.release}</java.version>
<!--
<description>${project.description}</description> maven fails when this
resolves to null -->
</additionalProperties>
</configuration>
@@ -109,7 +109,7 @@
</profile>
<profile>
- <id>deploy-to-docker-io</id>
+ <id>build-docker-image</id>
<activation>
<property>
<name>!skip-docker</name>
@@ -124,7 +124,7 @@
<plugin>
<groupId>com.google.cloud.tools</groupId>
<artifactId>jib-maven-plugin</artifactId>
- <version>3.4.6</version>
+ <version>3.5.1</version>
<configuration>
<from>
<image>eclipse-temurin:25-jdk</image>
@@ -138,16 +138,16 @@
<port>8080</port>
</ports>
</container>
- <to>
-
<image>docker.io/apache/causeway-app-demo-jpa</image>
- <tags>
-
<tag>${env.REVISION}</tag>
- </tags>
- <auth>
-
<username>${env.DOCKER_REGISTRY_USERNAME}</username>
-
<password>${env.DOCKER_REGISTRY_PASSWORD}</password>
- </auth>
- </to>
+<!-- <to>-->
+<!--
<image>docker.io/apache/causeway-app-demo-jpa</image>-->
+<!-- <tags>-->
+<!--
<tag>${env.REVISION}</tag>-->
+<!-- </tags>-->
+<!-- <auth>-->
+<!--
<username>${env.DOCKER_REGISTRY_USERNAME}</username>-->
+<!--
<password>${env.DOCKER_REGISTRY_PASSWORD}</password>-->
+<!-- </auth>-->
+<!-- </to>-->
</configuration>
</plugin>
</plugins>