keycloak-scim/examples/saml/post-with-signature/pom.xml

41 lines
1.5 KiB
XML
Raw Normal View History

2014-10-22 01:39:10 +00:00
<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>
2015-09-30 20:36:21 +00:00
<groupId>org.keycloak.examples</groupId>
<artifactId>saml-post-signatures</artifactId>
<version>1.6.0.Final-SNAPSHOT</version>
2014-10-22 01:39:10 +00:00
<packaging>war</packaging>
2014-10-22 01:39:10 +00:00
2015-09-30 20:36:21 +00:00
<name>Keycloak SAML Adapter Example POST Binding and Signatures</name>
2015-05-04 17:50:05 +00:00
<licenses>
<license>
<name>Apache License, Version 2.0</name>
<distribution>repo</distribution>
<url>http://www.apache.org/licenses/LICENSE-2.0.html</url>
</license>
</licenses>
2014-10-22 01:39:10 +00:00
<build>
<!-- Set the name of the war, used as the context root when the app is deployed -->
<finalName>${project.artifactId}</finalName>
<plugins>
2015-05-05 06:46:51 +00:00
<plugin>
2015-09-30 20:36:21 +00:00
<groupId>org.jboss.as.plugins</groupId>
<artifactId>jboss-as-maven-plugin</artifactId>
2014-10-22 01:39:10 +00:00
<configuration>
2015-09-30 20:36:21 +00:00
<skip>false</skip>
2014-10-22 01:39:10 +00:00
</configuration>
</plugin>
<plugin>
2015-09-30 20:36:21 +00:00
<groupId>org.wildfly.plugins</groupId>
<artifactId>wildfly-maven-plugin</artifactId>
2014-10-22 01:39:10 +00:00
<configuration>
2015-09-30 20:36:21 +00:00
<skip>false</skip>
2014-10-22 01:39:10 +00:00
</configuration>
</plugin>
</plugins>
</build>
</project>