citadel-api-root
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.memority.api.citadel</groupId>
<artifactId>citadel-api-root</artifactId>
<version>4.2.4</version>
</dependency><?xml version="1.0" encoding="UTF-8"?>
<!--
Copyright (c) 2016-2023 Memority. All Rights Reserved.
This file is part of Memority Citadel API <http://www.memority.com>, a Memority project.
This file is released under the Memority Public Artifacts End-User License Agreement,
see <https://www.memority.com/licenses/MY-TOOLS-EULA.html>
Unauthorized copying of this file, via any medium is strictly prohibited.
-->
<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>com.memority.api.poms</groupId>
<artifactId>memority-api-parent</artifactId>
<version>0.15.0</version>
</parent>
<groupId>com.memority.api.citadel</groupId>
<artifactId>citadel-api-root</artifactId>
<version>4.2.4</version>
<packaging>pom</packaging>
<properties>
<toolkit-api.version>4.2.4</toolkit-api.version>
<memority.project.name>Memority Citadel API</memority.project.name>
<memority.project.description>The Memority Citadel Java API</memority.project.description>
<memority.project.url>http://www.memority.com/</memority.project.url>
<!-- Enable groovy completion, Citadel style -->
<toolkit.rule.flavor>toolkit,citadel</toolkit.rule.flavor>
<!-- Maximum amount of seconds to waitUntil a state has been reached. Cannot be less than 1800 seconds. -->
<maven-central-deployment.waitMaxTime>3600</maven-central-deployment.waitMaxTime>
</properties>
<name>Memority Citadel API :: Root POM</name>
<description>This POM artifact is the parent POM for the Memority Citadel API project. Citadel is the Memority collection of services that handle identity management concerns.</description>
<url>${memority.project.url</url>
<modules>
<module>bom</module>
<module>api</module>
</modules>
<build>
<!-- Activate cross modules resource filtering for placeholder replacement -->
<resources>
<resource>
<directory>src/main/resources</directory>
<filtering>true</filtering>
</resource>
</resources>
<testResources>
<testResource>
<directory>src/test/resources</directory>
<filtering>true</filtering>
</testResource>
</testResources>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>1.8</source>
<target>1.8</target>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<trimStackTrace>false</trimStackTrace>
<includes>
<include>**/Test*.java</include>
<include>**/*Test.java</include>
<include>**/*Tests.java</include>
<include>**/*TestCase.java</include>
<include>**/*Documentation.java</include>
</includes>
</configuration>
</plugin>
</plugins>
</pluginManagement>
</build>
</project>