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-10-20 06:11:50 +00:00
|
|
|
<parent>
|
|
|
|
<artifactId>keycloak-examples-saml-parent</artifactId>
|
|
|
|
<groupId>org.keycloak</groupId>
|
2016-01-13 08:19:04 +00:00
|
|
|
<version>1.9.0.CR1-SNAPSHOT</version>
|
2015-10-20 06:11:50 +00:00
|
|
|
</parent>
|
|
|
|
|
2015-09-30 20:36:21 +00:00
|
|
|
<artifactId>saml-post-encryption</artifactId>
|
2014-10-22 01:39:10 +00:00
|
|
|
|
2015-04-22 17:11:46 +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 Assertion Encryption</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 07:33:48 +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>
|
|
|
|
|
2015-05-05 07:33:48 +00:00
|
|
|
</project>
|