broker-saml-mappers
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>io.github.herculesproject.sgi</groupId>
<artifactId>broker-saml-mappers</artifactId>
<version>1.3.0</version>
</dependency><?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>io.github.herculesproject.sgi</groupId>
<artifactId>sgi-auth</artifactId>
<version>1.3.0</version>
</parent>
<artifactId>broker-saml-mappers</artifactId>
<packaging>jar</packaging>
<name>broker-saml-mappers</name>
<description>SGI Broker SAML Mappers</description>
<url>https://github.com/HerculesCRUE/SGI</url>
<licenses>
<license>
<name>GNU General Public License, Version 3</name>
<url>https://www.gnu.org/licenses/gpl-3.0.html</url>
</license>
</licenses>
<developers>
<developer>
<name>Treelogic</name>
<email>info@treelogic.com</email>
<organization>Tree Technology</organization>
<organizationUrl>https://www.treelogic.com</organizationUrl>
</developer>
</developers>
<scm>
<connection>scm:git:git://github.com/herculesproject/sgi.git</connection>
<url>https://github.com/herculesproject/sgi/tree/main/sgi-auth/broker-saml-mappers</url>
</scm>
<dependencies>
<dependency>
<groupId>org.keycloak</groupId>
<artifactId>keycloak-core</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.keycloak</groupId>
<artifactId>keycloak-server-spi</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.keycloak</groupId>
<artifactId>keycloak-server-spi-private</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.keycloak</groupId>
<artifactId>keycloak-services</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.keycloak</groupId>
<artifactId>keycloak-saml-core-public</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.jboss.logging</groupId>
<artifactId>jboss-logging</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter</artifactId>
<version>${junit-jupiter.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-core</artifactId>
<version>${mockito.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-junit-jupiter</artifactId>
<version>${mockito.version}</version>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-enforcer-plugin</artifactId>
</plugin>
<plugin>
<?m2e execute onConfiguration,onIncremental?>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-help-plugin</artifactId>
</plugin>
</plugins>
</build>
<reporting>
<plugins>
<!--
Maven Project Info Reports Plugin - Generates reports information about the project.
https://maven.apache.org/plugins/maven-project-info-reports-plugin/
-->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-project-info-reports-plugin</artifactId>
<configuration>
<dependencyDetailsEnabled>false</dependencyDetailsEnabled>
</configuration>
</plugin>
<!--
Maven Javadoc Plugin - Generates Javadoc.
https://maven.apache.org/plugins/maven-javadoc-plugin/
-->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<configuration>
<!--
Shuts off non-error and non-warning messages, leaving only the warnings and errors
appear, making them easier to view.
-->
<quiet>true</quiet>
</configuration>
</plugin>
<!--
Maven JXR Plugin - Generates a cross-reference of the project's sources.
http://maven.apache.org/plugins/maven-jxr-plugin/
-->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jxr-plugin</artifactId>
</plugin>
<!--
JDepend Maven Plugin - Generates design quality metrics for each Java package.
http://www.mojohaus.org/jdepend-maven-plugin/
-->
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>jdepend-maven-plugin</artifactId>
</plugin>
<!--
Maven PMD Plugin - Generates PMD and CPD reports.
http://maven.apache.org/plugins/maven-pmd-plugin/
-->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-pmd-plugin</artifactId>
<configuration>
<!--suppress
MavenModelInspection -->
<targetJdk>${jdk.version}</targetJdk>
<excludes>
<exclude>**/generated/**</exclude>
<exclude>**/scratch/**</exclude>
</excludes>
<excludeRoots>
<excludeRoot>target/generated-sources</excludeRoot>
</excludeRoots>
</configuration>
</plugin>
<!--
FindBugs Maven Plugin - Inspects Java bytecode for occurrences of bug patterns.
http://www.mojohaus.org/findbugs-maven-plugin/
-->
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>findbugs-maven-plugin</artifactId>
<configuration>
<xmlOutput>true</xmlOutput>
</configuration>
</plugin>
<!--
TagList Maven Plugin - Generates a report on various tags found in the code.
http://www.mojohaus.org/taglist-maven-plugin/
-->
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>taglist-maven-plugin</artifactId>
<configuration>
<tagListOptions>
<tagClasses>
<tagClass>
<displayName>Todo</displayName>
<tags>
<tag>
<matchString>todo</matchString>
<matchType>ignoreCase</matchType>
</tag>
<tag>
<matchString>FIXME</matchString>
<matchType>exact</matchType>
</tag>
</tags>
</tagClass>
<tagClass>
<displayName>Cleanup</displayName>
<tags>
<tag>
<matchString>@deprecated</matchString>
<matchType>exact</matchType>
</tag>
</tags>
</tagClass>
</tagClasses>
</tagListOptions>
</configuration>
</plugin>
</plugins>
</reporting>
</project>