openam-soap-sts-client
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>org.openidentityplatform.openam</groupId>
<artifactId>openam-soap-sts-client</artifactId>
<version>16.0.6</version>
</dependency><?xml version="1.0" encoding="UTF-8"?>
<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">
<parent>
<artifactId>openam-soap-sts</artifactId>
<groupId>org.openidentityplatform.openam</groupId>
<version>16.0.6</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>openam-soap-sts-client</artifactId>
<name>OpenAM SOAP STS Client</name>
<description>OpenAM WS-Trust SecureTokenService Client</description>
<build>
<plugins>
<plugin>
<artifactId>maven-shade-plugin</artifactId>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
<configuration>
<artifactSet>
<includes>
<include>org.openidentityplatform.openam:openam-soap-sts-server</include>
</includes>
</artifactSet>
<filters>
<filter>
<artifact>org.openidentityplatform.openam:openam-soap-sts-server</artifact>
<includes>
<include>org/forgerock/openam/sts/soap/policy/am/OpenAMSessionAssertion*</include>
<include>org/forgerock/openam/sts/soap/policy/am/AbstractOpenAMSessionTokenInterceptor*</include>
</includes>
</filter>
</filters>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.assertj</groupId>
<artifactId>assertj-core</artifactId>
<version>3.27.7</version>
<scope>test</scope>
<exclusions>
<exclusion>
<artifactId>byte-buddy</artifactId>
<groupId>net.bytebuddy</groupId>
</exclusion>
</exclusions>
</dependency>
</dependencies>
</project>