2013-11-01 14:23:49 +00:00
|
|
|
<?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>keycloak-parent</artifactId>
|
|
|
|
<groupId>org.keycloak</groupId>
|
2014-12-06 02:09:38 +00:00
|
|
|
<version>1.1.0.Final-SNAPSHOT</version>
|
2013-11-01 14:23:49 +00:00
|
|
|
</parent>
|
|
|
|
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<artifactId>keycloak-server</artifactId>
|
|
|
|
<packaging>war</packaging>
|
|
|
|
<name>Keycloak Server</name>
|
|
|
|
<description/>
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
2014-04-10 15:29:47 +00:00
|
|
|
<groupId>org.keycloak</groupId>
|
2014-07-22 13:10:38 +00:00
|
|
|
<artifactId>keycloak-dependencies-server-all</artifactId>
|
2014-04-10 15:29:47 +00:00
|
|
|
<version>${project.version}</version>
|
2014-07-22 13:10:38 +00:00
|
|
|
<type>pom</type>
|
2013-11-01 14:23:49 +00:00
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
<build>
|
|
|
|
<finalName>auth-server</finalName>
|
|
|
|
<plugins>
|
2014-01-07 19:37:50 +00:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.jboss.as.plugins</groupId>
|
|
|
|
<artifactId>jboss-as-maven-plugin</artifactId>
|
2014-05-28 10:00:36 +00:00
|
|
|
<configuration>
|
|
|
|
<skip>false</skip>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.wildfly.plugins</groupId>
|
|
|
|
<artifactId>wildfly-maven-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<skip>false</skip>
|
|
|
|
</configuration>
|
2014-08-15 18:51:38 +00:00
|
|
|
</plugin>
|
2013-11-01 14:23:49 +00:00
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
</project>
|