This is an automated email from the ASF dual-hosted git repository.
ahuber pushed a commit to branch v2
in repository https://gitbox.apache.org/repos/asf/causeway-app-referenceapp.git
The following commit(s) were added to refs/heads/v2 by this push:
new eb6c051 pom fixes
eb6c051 is described below
commit eb6c051b004643b5cffeeb34c73d55694b2f87ca
Author: andi-huber <[email protected]>
AuthorDate: Wed Mar 11 21:10:47 2026 +0100
pom fixes
---
codegen/pom.xml | 2 +-
domain-tests/pom.xml | 2 +-
pom.xml | 349 ++++++++++++++++++++++++++-------------------------
3 files changed, 177 insertions(+), 176 deletions(-)
diff --git a/codegen/pom.xml b/codegen/pom.xml
index 631786c..f5282a2 100644
--- a/codegen/pom.xml
+++ b/codegen/pom.xml
@@ -25,7 +25,7 @@
<parent>
<groupId>org.apache.causeway.examples.apps</groupId>
<artifactId>reference-app-parent</artifactId>
- <version>2.0.0-SNAPSHOT</version>
+ <version>2.2.0-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
diff --git a/domain-tests/pom.xml b/domain-tests/pom.xml
index d67a922..39126b0 100644
--- a/domain-tests/pom.xml
+++ b/domain-tests/pom.xml
@@ -17,7 +17,7 @@
<parent>
<groupId>org.apache.causeway.examples.apps</groupId>
<artifactId>reference-app-parent</artifactId>
- <version>2.0.0-SNAPSHOT</version>
+ <version>2.2.0-SNAPSHOT</version>
</parent>
<artifactId>reference-app-domain-tests</artifactId>
diff --git a/pom.xml b/pom.xml
index f69c1fb..103a674 100644
--- a/pom.xml
+++ b/pom.xml
@@ -1,6 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?>
-<!-- Licensed to the Apache Software Foundation (ASF) under one or more
contributor
- license agreements. See the NOTICE file distributed with this work for
additional
+<!-- Licensed to the Apache Software Foundation (ASF) under one or more
+contributor
+ license agreements. See the NOTICE file distributed with this work for
+additional
information regarding copyright ownership. The ASF licenses this file to
you under the Apache License, Version 2.0 (the "License"); you may not
use
this file except in compliance with the License. You may obtain a copy
of
@@ -10,183 +12,182 @@
OF ANY KIND, either express or implied. See the License for the specific
language governing permissions and limitations under the License. -->
<project xmlns="http://maven.apache.org/POM/4.0.0"
- xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
- xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
http://maven.apache.org/xsd/maven-4.0.0.xsd">
- <modelVersion>4.0.0</modelVersion>
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
http://maven.apache.org/xsd/maven-4.0.0.xsd">
+ <modelVersion>4.0.0</modelVersion>
- <parent>
+ <parent>
<groupId>org.apache.causeway.app</groupId>
<artifactId>causeway-app-starter-parent</artifactId>
<version>2.2.0-SNAPSHOT</version>
</parent>
- <groupId>org.apache.causeway.examples.apps</groupId>
- <artifactId>reference-app-parent</artifactId>
- <version>2.2.0-SNAPSHOT</version> <!-- may differ from parent, keep -->
-
- <name>Reference App - Parent</name>
-
- <packaging>pom</packaging>
-
- <properties>
- <sonar.skip>true</sonar.skip>
- <causeway.version>2.2.0-SNAPSHOT</causeway.version>
- </properties>
-
- <build>
- <resources>
- <resource>
- <filtering>false</filtering>
- <directory>src/main/resources</directory>
- </resource>
- <resource>
- <filtering>false</filtering>
- <directory>src/main/java</directory>
- <includes>
- <include>**</include>
- </includes>
- <excludes>
- <exclude>**/*.java</exclude>
- </excludes>
- </resource>
- </resources>
-
- <plugins>
-
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-resources-plugin</artifactId>
- <inherited>true</inherited>
- <configuration>
- <delimiters>
- <delimiter>${*}</delimiter>
- <delimiter>@</delimiter>
- <delimiter>#</delimiter>
- </delimiters>
- </configuration>
- </plugin>
-
- </plugins>
- </build>
-
- <dependencyManagement>
- <dependencies>
-
- <dependency>
-
<groupId>org.apache.causeway.extensions</groupId>
- <artifactId>causeway-extensions</artifactId>
- <version>${causeway.version}</version>
- <type>pom</type>
- <scope>import</scope>
- </dependency>
-
- <dependency>
-
<groupId>org.apache.causeway.valuetypes</groupId>
- <artifactId>causeway-valuetypes</artifactId>
- <version>${causeway.version}</version>
- <type>pom</type>
- <scope>import</scope>
- </dependency>
-
- <dependency>
-
<groupId>org.apache.causeway.examples.apps</groupId>
- <artifactId>reference-app-domain</artifactId>
- <version>${project.version}</version>
- </dependency>
-
- <dependency>
-
<groupId>org.apache.causeway.examples.apps</groupId>
- <artifactId>reference-app-web</artifactId>
- <version>${project.version}</version>
- </dependency>
-
- <dependency>
-
<groupId>org.apache.causeway.examples.apps</groupId>
-
<artifactId>reference-app-wicket-common</artifactId>
- <version>${project.version}</version>
- </dependency>
-
- <dependency>
-
<groupId>org.apache.causeway.examples.apps</groupId>
-
<artifactId>reference-app-wicket-jpa</artifactId>
- <version>${project.version}</version>
- </dependency>
-
- <dependency>
-
<groupId>org.apache.causeway.examples.apps</groupId>
-
<artifactId>reference-app-wicket-jdo</artifactId>
- <version>${project.version}</version>
- </dependency>
-
- </dependencies>
- </dependencyManagement>
-
- <dependencies>
- <dependency>
- <groupId>org.projectlombok</groupId>
- <artifactId>lombok</artifactId>
- <scope>provided</scope>
- </dependency>
- </dependencies>
-
- <profiles>
- <profile>
- <id>module-examples-demo-testing</id>
- <activation>
- <property>
-
<name>module-examples-demo-testing</name>
- </property>
- </activation>
- <modules>
- <module>domain</module>
- <module>web</module>
- <module>testing</module>
- </modules>
- </profile>
- <profile>
- <id>module-examples-demo-wicket</id>
- <activation>
- <property>
- <name>module-examples-demo-wicket</name>
- </property>
- </activation>
- <modules>
- <module>domain</module>
- <module>web</module>
- <module>wicket/common</module>
- <module>wicket/jdo</module>
- <module>wicket/jpa</module>
- </modules>
- </profile>
- <profile>
- <id>wicket-jpa</id>
- <activation>
- <property>
- <name>wicket-jpa</name>
- </property>
- </activation>
- <modules>
- <module>domain</module>
- <module>web</module>
- <module>wicket/common</module>
- <module>wicket/jpa</module>
- </modules>
- </profile>
- <profile>
- <id>wicket-jdo</id>
- <activation>
- <property>
- <name>wicket-jdo</name>
- </property>
- </activation>
- <modules>
- <module>domain</module>
- <module>web</module>
- <module>wicket/common</module>
- <module>wicket/jdo</module>
- </modules>
- </profile>
-
- </profiles>
+ <groupId>org.apache.causeway.examples.apps</groupId>
+ <artifactId>reference-app-parent</artifactId>
+ <version>2.2.0-SNAPSHOT</version> <!-- may differ from parent, keep -->
+
+ <name>Reference App - Parent</name>
+
+ <packaging>pom</packaging>
+
+ <properties>
+ <causeway.version>2.2.0-SNAPSHOT</causeway.version>
+ </properties>
+
+ <build>
+ <resources>
+ <resource>
+ <filtering>false</filtering>
+ <directory>src/main/resources</directory>
+ </resource>
+ <resource>
+ <filtering>false</filtering>
+ <directory>src/main/java</directory>
+ <includes>
+ <include>**</include>
+ </includes>
+ <excludes>
+ <exclude>**/*.java</exclude>
+ </excludes>
+ </resource>
+ </resources>
+
+ <plugins>
+
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-resources-plugin</artifactId>
+ <inherited>true</inherited>
+ <configuration>
+ <delimiters>
+ <delimiter>${*}</delimiter>
+ <delimiter>@</delimiter>
+ <delimiter>#</delimiter>
+ </delimiters>
+ </configuration>
+ </plugin>
+
+ </plugins>
+ </build>
+
+ <dependencyManagement>
+ <dependencies>
+
+ <dependency>
+ <groupId>org.apache.causeway.extensions</groupId>
+ <artifactId>causeway-extensions</artifactId>
+ <version>${causeway.version}</version>
+ <type>pom</type>
+ <scope>import</scope>
+ </dependency>
+
+ <dependency>
+ <groupId>org.apache.causeway.valuetypes</groupId>
+ <artifactId>causeway-valuetypes</artifactId>
+ <version>${causeway.version}</version>
+ <type>pom</type>
+ <scope>import</scope>
+ </dependency>
+
+ <dependency>
+ <groupId>org.apache.causeway.examples.apps</groupId>
+ <artifactId>reference-app-domain</artifactId>
+ <version>${project.version}</version>
+ </dependency>
+
+ <dependency>
+ <groupId>org.apache.causeway.examples.apps</groupId>
+ <artifactId>reference-app-web</artifactId>
+ <version>${project.version}</version>
+ </dependency>
+
+ <dependency>
+ <groupId>org.apache.causeway.examples.apps</groupId>
+ <artifactId>reference-app-wicket-common</artifactId>
+ <version>${project.version}</version>
+ </dependency>
+
+ <dependency>
+ <groupId>org.apache.causeway.examples.apps</groupId>
+ <artifactId>reference-app-wicket-jpa</artifactId>
+ <version>${project.version}</version>
+ </dependency>
+
+ <dependency>
+ <groupId>org.apache.causeway.examples.apps</groupId>
+ <artifactId>reference-app-wicket-jdo</artifactId>
+ <version>${project.version}</version>
+ </dependency>
+
+ </dependencies>
+ </dependencyManagement>
+
+ <dependencies>
+ <dependency>
+ <groupId>org.projectlombok</groupId>
+ <artifactId>lombok</artifactId>
+ <scope>provided</scope>
+ </dependency>
+ </dependencies>
+
+ <profiles>
+ <profile>
+ <id>module-examples-demo-testing</id>
+ <activation>
+ <property>
+ <name>module-examples-demo-testing</name>
+ </property>
+ </activation>
+ <modules>
+ <module>domain</module>
+ <module>web</module>
+ <module>testing</module>
+ </modules>
+ </profile>
+ <profile>
+ <id>module-examples-demo-wicket</id>
+ <activation>
+ <property>
+ <name>module-examples-demo-wicket</name>
+ </property>
+ </activation>
+ <modules>
+ <module>domain</module>
+ <module>web</module>
+ <module>wicket/common</module>
+ <module>wicket/jdo</module>
+ <module>wicket/jpa</module>
+ </modules>
+ </profile>
+ <profile>
+ <id>wicket-jpa</id>
+ <activation>
+ <property>
+ <name>wicket-jpa</name>
+ </property>
+ </activation>
+ <modules>
+ <module>domain</module>
+ <module>web</module>
+ <module>wicket/common</module>
+ <module>wicket/jpa</module>
+ </modules>
+ </profile>
+ <profile>
+ <id>wicket-jdo</id>
+ <activation>
+ <property>
+ <name>wicket-jdo</name>
+ </property>
+ </activation>
+ <modules>
+ <module>domain</module>
+ <module>web</module>
+ <module>wicket/common</module>
+ <module>wicket/jdo</module>
+ </modules>
+ </profile>
+
+ </profiles>
</project>