OpenFM
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>org.openidentityplatform.openam</groupId>
<artifactId>OpenFM</artifactId>
<version>16.1.2</version>
</dependency><?xml version="1.0" encoding="UTF-8"?>
<!--
* The contents of this file are subject to the terms of the Common Development and
* Distribution License (the License). You may not use this file except in compliance with the
* License.
*
* You can obtain a copy of the License at legal/CDDLv1.0.txt. See the License for the
* specific language governing permission and limitations under the License.
*
* When distributing Covered Software, include this CDDL Header Notice in each file and include
* the License file at legal/CDDLv1.0.txt. If applicable, add the following below the CDDL
* Header, with the fields enclosed by brackets [] replaced by your own identifying
* information: "Portions copyright [year] [name of copyright owner]".
*
* Copyright 2011-2016 ForgeRock AS.
* Portions copyright 2017-2026 3A Systems, LLC
-->
<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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<!-- Parent Project -->
<parent>
<groupId>org.openidentityplatform.openam</groupId>
<artifactId>openam-federation</artifactId>
<version>16.1.2</version>
</parent>
<!-- Component Definition -->
<name>OpenFM</name>
<description>OpenAM Federation</description>
<artifactId>OpenFM</artifactId>
<packaging>jar</packaging>
<profiles>
<profile>
<id>set-compiler-release</id>
<activation>
<jdk>[9,)</jdk>
</activation>
<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<!--
package sun.security.krb5 does not exist
-->
<release combine.self="override" />
</configuration>
</plugin>
</plugins>
</pluginManagement>
</build>
</profile>
</profiles>
<!-- Build -->
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<!--
The excluded classes are OpenSSO-era tests that ran inside a deployed OpenAM:
they obtain an Application SSO token via AdminTokenAction and drive
ServiceManager/IdRepo directly. Outside a configured server they fail in the
constructor or in @BeforeClass, and TestNG aborts the entire suite when one
test class cannot be instantiated. That is why this module carried a blanket
skipTests property from 2013 until 2026, hiding every test it owns.
Excluding them by name keeps the remaining unit tests running, and any newly
added test is still picked up by surefire's default patterns. Reviving the
list below needs a live OpenAM.
-->
<excludes>
<!-- whole packages: every test here drives a live server -->
<exclude>com/sun/identity/policy/*.java</exclude>
<exclude>com/sun/identity/rest/*.java</exclude>
<exclude>com/sun/identity/xacml/**/*.java</exclude>
<!-- in-container harness leftovers, not tests themselves -->
<exclude>com/sun/identity/unittest/TestHarness.java</exclude>
<exclude>com/sun/identity/unittest/TestListener.java</exclude>
<!-- entitlement: unit tests share these packages, so list per class -->
<exclude>com/sun/identity/entitlement/AndConditionEvalTest.java</exclude>
<exclude>com/sun/identity/entitlement/ApplicationCacheAfterRealmChangeTest.java</exclude>
<exclude>com/sun/identity/entitlement/ApplicationCreatorNDateTest.java</exclude>
<exclude>com/sun/identity/entitlement/ApplicationDelegationTest.java</exclude>
<exclude>com/sun/identity/entitlement/ApplicationFilterTest.java</exclude>
<exclude>com/sun/identity/entitlement/ApplicationPrivilegeMetaTest.java</exclude>
<exclude>com/sun/identity/entitlement/ApplicationTypeTest.java</exclude>
<exclude>com/sun/identity/entitlement/CanBeDeletedAppTest.java</exclude>
<exclude>com/sun/identity/entitlement/DecisionMergeTest.java</exclude>
<exclude>com/sun/identity/entitlement/DelegationIsAllowedSubResourceTest.java</exclude>
<exclude>com/sun/identity/entitlement/DelegationPrivilegeIdRepoAccessTest.java</exclude>
<exclude>com/sun/identity/entitlement/DelegationPrivilegeSubResourceTest.java</exclude>
<exclude>com/sun/identity/entitlement/DelegationPrivilegeTest.java</exclude>
<exclude>com/sun/identity/entitlement/HttpStarEvaluationTest.java</exclude>
<exclude>com/sun/identity/entitlement/IdentityGroupToEntitlementGroupTest.java</exclude>
<exclude>com/sun/identity/entitlement/IDPPTest.java</exclude>
<exclude>com/sun/identity/entitlement/log/LogTest.java</exclude>
<exclude>com/sun/identity/entitlement/MultiWildcardEvalTest.java</exclude>
<exclude>com/sun/identity/entitlement/opensso/EntitlementServiceTest.java</exclude>
<exclude>com/sun/identity/entitlement/opensso/RealmRemovedTest.java</exclude>
<exclude>com/sun/identity/entitlement/OrConditionEvalTest.java</exclude>
<exclude>com/sun/identity/entitlement/OrgAliasReferralTest.java</exclude>
<exclude>com/sun/identity/entitlement/PrivilegeDelegationTest.java</exclude>
<exclude>com/sun/identity/entitlement/PrivilegeManagerTest.java</exclude>
<exclude>com/sun/identity/entitlement/ReferralPrivilegeRemovalTest.java</exclude>
<exclude>com/sun/identity/entitlement/ReferralPrivilegeTest.java</exclude>
<exclude>com/sun/identity/entitlement/ReferralPrivilegeWithRemovedRealmTest.java</exclude>
<exclude>com/sun/identity/entitlement/ReferredResourcesTest.java</exclude>
<exclude>com/sun/identity/entitlement/SingleWildCardEvaluatorTest.java</exclude>
<exclude>com/sun/identity/entitlement/SubRealmEvaluationTest.java</exclude>
<exclude>com/sun/identity/entitlement/SubRealmGroupTest.java</exclude>
<exclude>com/sun/identity/entitlement/TestAttributeEvaluator.java</exclude>
<exclude>com/sun/identity/entitlement/TestEvaluator.java</exclude>
<exclude>com/sun/identity/entitlement/TestGroupEvaluator.java</exclude>
<exclude>com/sun/identity/entitlement/XACMLExportTest.java</exclude>
</excludes>
</configuration>
</plugin>
</plugins>
<resources>
<resource>
<directory>src/main/resources</directory>
<includes>
<include>**/*</include>
</includes>
<excludes>
<exclude>*_*/*</exclude>
</excludes>
<filtering>true</filtering>
</resource>
<resource>
<directory>src/main/resources/de_DE</directory>
<includes>
<include>*</include>
</includes>
<filtering>true</filtering>
</resource>
<resource>
<directory>src/main/resources/es_ES</directory>
<includes>
<include>*</include>
</includes>
<filtering>true</filtering>
</resource>
<resource>
<directory>src/main/resources/fr_FR</directory>
<includes>
<include>*</include>
</includes>
<filtering>true</filtering>
</resource>
<resource>
<directory>src/main/resources/ja_JP</directory>
<includes>
<include>*</include>
</includes>
<filtering>true</filtering>
</resource>
<resource>
<directory>src/main/resources/ko_KR</directory>
<includes>
<include>*</include>
</includes>
<filtering>true</filtering>
</resource>
<resource>
<directory>src/main/resources/zh_CN</directory>
<includes>
<include>*</include>
</includes>
<filtering>true</filtering>
</resource>
<resource>
<directory>src/main/resources/zh_TW</directory>
<includes>
<include>*</include>
</includes>
<filtering>true</filtering>
</resource>
</resources>
</build>
<dependencies>
<dependency>
<groupId>org.glassfish.metro</groupId>
<artifactId>wsit-impl</artifactId>
</dependency>
<dependency>
<groupId>org.openidentityplatform.openam</groupId>
<artifactId>openam-core</artifactId>
</dependency>
<dependency>
<groupId>org.openidentityplatform.openam</groupId>
<artifactId>openam-rest</artifactId>
</dependency>
<dependency>
<groupId>org.openidentityplatform.openam</groupId>
<artifactId>openam-entitlements</artifactId>
</dependency>
<dependency>
<groupId>org.openidentityplatform.openam</groupId>
<artifactId>openam-federation-library</artifactId>
</dependency>
<dependency>
<groupId>jakarta.servlet</groupId>
<artifactId>jakarta.servlet-api</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.apache.santuario</groupId>
<artifactId>xmlsec</artifactId>
</dependency>
<dependency>
<groupId>org.testng</groupId>
<artifactId>testng</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.assertj</groupId>
<artifactId>assertj-core</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-core</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.sun.xml.ws.security.kerb</groupId>
<artifactId>kerberos-wss-extension</artifactId>
<version>1.0</version>
</dependency>
<dependency>
<groupId>xalan</groupId>
<artifactId>xalan</artifactId>
<version>2.7.3</version>
</dependency>
<dependency>
<groupId>xalan</groupId>
<artifactId>serializer</artifactId>
<version>2.7.3</version>
</dependency>
</dependencies>
</project>