Parent pom for cui-open-source-projects. It defines and configures a number of maven-plugins, unifying the descendant modules. It aims at modules being at least Java 21. It defines the sonatype-repositories as read and deploy repositories.
Maven-site result can be found Project-Home-Page
-
cui-java-bom - Java dependency management
-
java-ee-bom - Jakarta EE dependency management
-
Build Information - Information about building the project
<parent>
<groupId>de.cuioss</groupId>
<artifactId>cui-parent-pom</artifactId>
<version>${version}</version>
</parent><dependencyManagement>
<dependencies>
<dependency>
<groupId>de.cuioss</groupId>
<artifactId>java-ee-10-bom</artifactId>
<!-- Starting with 0.9.8 version.cui.parent will be implicitly set by cui-parent-pom -->
<version>${version.cui.parent}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencies>
</dependencyManagement><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>
<parent>
<groupId>de.cuioss</groupId>
<artifactId>cui-java-parent</artifactId>
<version>1.1.3</version>
</parent>
<artifactId>cui-java-sample</artifactId>
<name>cui java sample</name>
<packaging>pom</packaging>
<description>Sample usage of parent-pom</description>
<dependencies>
<!-- Provided-->
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
</dependency>
<!-- Unit testing -->
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter</artifactId>
</dependency>
</dependencies>
</project>