pom
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>io.ultreia.java4all.decorator</groupId>
<artifactId>pom</artifactId>
<version>1.0.0</version>
</dependency><?xml version="1.0" encoding="UTF-8"?>
<!--
#%L
Decorator Pom
%%
Copyright (C) 2021 - 2026 Ultreia.io
%%
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Lesser General Public License as
published by the Free Software Foundation, either version 3 of the
License, or (at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Lesser Public License for more details.
You should have received a copy of the GNU General Lesser Public
License along with this program. If not, see
<http://www.gnu.org/licenses/lgpl-3.0.html>.
#L%
-->
<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>io.ultreia.maven</groupId>
<artifactId>pom</artifactId>
<version>2026.1</version>
</parent>
<groupId>io.ultreia.java4all.decorator</groupId>
<artifactId>pom</artifactId>
<version>1.0.0</version>
<packaging>pom</packaging>
<name>Decorator Pom</name>
<description>Decorator :: Pom</description>
<url>https://ultreiaio.gitlab.io/decorator</url>
<inceptionYear>2021</inceptionYear>
<modules>
<module>api</module>
<module>spi-annotations</module>
<module>spi-model</module>
<module>spi-builder</module>
<module>spi-annotations-processors</module>
</modules>
<scm>
<connection>scm:git:git@gitlab.com:${projectPath}.git</connection>
<developerConnection>scm:git:ssh://git@gitlab.com:${projectPath}.git</developerConnection>
<url>https://gitlab.com/${projectPath}</url>
</scm>
<distributionManagement>
<site>
<id>gitlab.com</id>
<url>scm:git:https://git@gitlab.com/${projectPath}.git</url>
</site>
</distributionManagement>
<properties>
<organizationId>ultreiaio</organizationId>
<projectId>decorator</projectId>
<java.version>25</java.version>
<lib.version.java4all.decorator>${project.version}</lib.version.java4all.decorator>
<!-- deploy everything -->
<maven.javadoc.skip>false</maven.javadoc.skip>
<maven.source.skip>false</maven.source.skip>
<maven.deploy.skip>false</maven.deploy.skip>
<!-- ////////////////////////////////////////////////////////////////// -->
<!-- //// Site plugin configuration //// -->
<!-- ////////////////////////////////////////////////////////////////// -->
<locales>default</locales>
<generateSitemap>true</generateSitemap>
<relativizeDecorationLinks>false</relativizeDecorationLinks>
<!-- ////////////////////////////////////////////////////////////////// -->
<!-- //// GitLab plugin configuration //// -->
<!-- ////////////////////////////////////////////////////////////////// -->
<gitlab.changesTitle>Decorator changelog</gitlab.changesTitle>
<!-- ////////////////////////////////////////////////////////////////// -->
<!-- //// Javadoc plugin configuration //// -->
<!-- ////////////////////////////////////////////////////////////////// -->
<maven.javadoc.failOnError>false</maven.javadoc.failOnError>
<maven.javadoc.quiet>true</maven.javadoc.quiet>
<javadocJreApiVersion>${java.version}</javadocJreApiVersion>
<javadoc.additionalOptions>-html5</javadoc.additionalOptions>
<javadoc.javadocExecutable>${java.home}/bin/javadoc</javadoc.javadocExecutable>
<!-- ////////////////////////////////////////////////////////////////// -->
<!-- //// Dependencies versions //// -->
<!-- ////////////////////////////////////////////////////////////////// -->
<lib.version.google.auto-service>1.1.1</lib.version.google.auto-service>
<lib.version.log4j2>2.25.3</lib.version.log4j2>
</properties>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>com.github.ben-manes.caffeine</groupId>
<artifactId>caffeine</artifactId>
<version>3.2.3</version>
</dependency>
<!-- Not used in code, but required for dependencies convergence -->
<dependency>
<groupId>com.google.errorprone</groupId>
<artifactId>error_prone_annotations</artifactId>
<version>2.47.0</version>
</dependency>
<!-- Not used in code, but required for dependencies convergence -->
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<version>33.5.0-jre</version>
</dependency>
<dependency>
<groupId>io.ultreia.java4all</groupId>
<artifactId>java-lang</artifactId>
<version>2.0.6</version>
</dependency>
<dependency>
<groupId>io.ultreia.java4all</groupId>
<artifactId>java-util</artifactId>
<version>2.0.0</version>
</dependency>
<dependency>
<groupId>io.ultreia.java4all.i18n</groupId>
<artifactId>i18n-runtime</artifactId>
<version>4.0.0</version>
</dependency>
<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-api</artifactId>
<version>${lib.version.log4j2}</version>
</dependency>
<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-core</artifactId>
<version>${lib.version.log4j2}</version>
</dependency>
<!-- Only used in compiler plugin for annotation processing -->
<dependency>
<groupId>com.google.auto.service</groupId>
<artifactId>auto-service</artifactId>
<version>${lib.version.google.auto-service}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.google.auto.service</groupId>
<artifactId>auto-service-annotations</artifactId>
<version>${lib.version.google.auto-service}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.13.2</version>
<scope>test</scope>
</dependency>
</dependencies>
</dependencyManagement>
<build>
<plugins>
<plugin>
<artifactId>maven-enforcer-plugin</artifactId>
<executions>
<execution>
<id>check-project</id>
<goals>
<goal>enforce</goal>
</goals>
<phase>validate</phase>
<configuration>
<rules>
<bannedDependencies>
<excludes>
<exclude>com.google.auto.service:*</exclude>
</excludes>
<includes>
<include>com.google.auto.service:*:*:*:provided</include>
</includes>
<message>Fix provided dependencies!</message>
</bannedDependencies>
</rules>
<fail>true</fail>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
<profiles>
<profile>
<id>reporting</id>
<activation>
<property>
<name>performRelease</name>
<value>true</value>
</property>
</activation>
<build>
<plugins>
<plugin>
<groupId>io.ultreia.maven</groupId>
<artifactId>gitlab-maven-plugin</artifactId>
<inherited>false</inherited>
<executions>
<execution>
<goals>
<goal>generate-changes</goal>
</goals>
<phase>pre-site</phase>
<inherited>false</inherited>
</execution>
</executions>
</plugin>
</plugins>
</build>
<reporting>
<plugins>
<plugin>
<artifactId>maven-project-info-reports-plugin</artifactId>
</plugin>
<plugin>
<artifactId>maven-changes-plugin</artifactId>
<inherited>false</inherited>
<configuration>
<issueLinkTemplatePerSystem>
<gitlab>https://gitlab.com/${projectPath}/issues/%ISSUE%</gitlab>
</issueLinkTemplatePerSystem>
<xmlPath>${project.build.directory}/generated-site/changes.xml</xmlPath>
</configuration>
<reportSets>
<reportSet>
<reports>
<report>changes-report</report>
</reports>
</reportSet>
</reportSets>
</plugin>
<plugin>
<artifactId>maven-pmd-plugin</artifactId>
<reportSets>
<reportSet>
<reports>
<report>pmd</report>
<report>cpd</report>
</reports>
</reportSet>
</reportSets>
</plugin>
<plugin>
<artifactId>maven-javadoc-plugin</artifactId>
<configuration>
<quiet>${maven.javadoc.quiet}</quiet>
<charset>${project.reporting.outputEncoding}</charset>
<links>
<link>https://docs.oracle.com/javase/${javadocJreApiVersion}/docs/api/</link>
</links>
</configuration>
<reportSets>
<reportSet>
<reports>
<report>javadoc-no-fork</report>
<report>test-javadoc-no-fork</report>
</reports>
</reportSet>
</reportSets>
</plugin>
<plugin>
<artifactId>maven-changelog-plugin</artifactId>
</plugin>
<plugin>
<artifactId>maven-jxr-plugin</artifactId>
<reportSets>
<reportSet>
<reports>
<report>jxr-no-fork</report>
<report>test-jxr-no-fork</report>
</reports>
</reportSet>
</reportSets>
</plugin>
<plugin>
<artifactId>maven-surefire-report-plugin</artifactId>
<reportSets>
<reportSet>
<reports>
<report>report-only</report>
</reports>
</reportSet>
</reportSets>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>license-maven-plugin</artifactId>
<reportSets>
<reportSet>
<reports>
<report>third-party-report</report>
</reports>
</reportSet>
</reportSets>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>versions-maven-plugin</artifactId>
<inherited>false</inherited>
<reportSets>
<reportSet>
<reports>
<report>dependency-updates-report</report>
<report>plugin-updates-report</report>
<report>property-updates-report</report>
</reports>
</reportSet>
</reportSets>
</plugin>
</plugins>
</reporting>
</profile>
</profiles>
</project>