blob: 63b4e00eccadedb47658eacd39d1e3dcaa892a4c [file]
<?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 information regarding copyright ownership.
The ASF licenses this file to you under the Apache License, Version 2.0.
-->
<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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.apache.causeway.regressiontests</groupId>
<artifactId>causeway-regressiontests</artifactId>
<version>4.0.0-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
<artifactId>causeway-regressiontests-referenceapp</artifactId>
<name>Apache Causeway Regression Tests - Reference Application</name>
<packaging>pom</packaging>
<properties>
<maven.install.skip>true</maven.install.skip>
<maven.deploy.skip>true</maven.deploy.skip>
</properties>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.apache.causeway.regressiontests</groupId>
<artifactId>causeway-regressiontests-referenceapp-domain</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.apache.causeway.regressiontests</groupId>
<artifactId>causeway-regressiontests-referenceapp-support-jpa</artifactId>
<version>${project.version}</version>
</dependency>
</dependencies>
</dependencyManagement>
<build>
<plugins>
<plugin>
<groupId>org.apache.rat</groupId>
<artifactId>apache-rat-plugin</artifactId>
<configuration>
<excludes combine.children="append">
<exclude>CREDITS.TXT</exclude>
<exclude>**/source-inventory.json</exclude>
<exclude>**/source-manifest.sha256</exclude>
<exclude>domain/src/main/java/demoapp/dom/**/*_*.java</exclude>
<exclude>domain/src/main/java/demoapp/dom/**/package-info.java</exclude>
<exclude>domain/src/main/java/demoapp/dom/_infra/docgen/SuppressDocumentation.java</exclude>
<exclude>domain/src/main/java/demoapp/dom/_infra/samples/**</exclude>
<exclude>domain/src/main/java/demoapp/dom/domain/properties/ValueSemantics/percentage/**</exclude>
<exclude>domain/src/main/java/demoapp/dom/types/causeway/clobs/samples/**</exclude>
<exclude>domain/src/main/java/demoapp/dom/types/javamath/bigdecimals/meta/Money.java</exclude>
<exclude>domain/src/main/resources/banner.txt</exclude>
<exclude>domain/src/main/resources/static/**</exclude>
</excludes>
</configuration>
</plugin>
</plugins>
</build>
<modules>
<module>domain</module>
<module>support-jpa</module>
<module>htmx</module>
</modules>
</project>