keycloak-scim/distribution/server-dist/pom.xml

81 lines
3.2 KiB
XML
Raw Normal View History

<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">
2014-01-07 19:37:50 +00:00
<modelVersion>4.0.0</modelVersion>
<parent>
<artifactId>keycloak-parent</artifactId>
<groupId>org.keycloak</groupId>
2015-04-02 13:36:43 +00:00
<version>1.2.0.RC1-SNAPSHOT</version>
2014-01-07 19:37:50 +00:00
<relativePath>../../pom.xml</relativePath>
</parent>
<artifactId>keycloak-server-dist</artifactId>
2014-01-07 19:37:50 +00:00
<packaging>pom</packaging>
<name>Keycloak Server Distribution</name>
2014-01-07 19:37:50 +00:00
<description/>
<dependencies>
<dependency>
<groupId>org.keycloak</groupId>
<artifactId>keycloak-server-overlay</artifactId>
<type>zip</type>
</dependency>
<dependency>
<groupId>org.wildfly</groupId>
<artifactId>wildfly-dist</artifactId>
<type>zip</type>
2014-01-07 19:37:50 +00:00
</dependency>
</dependencies>
2014-01-07 19:37:50 +00:00
<build>
<finalName>keycloak-${project.version}</finalName>
2014-01-07 19:37:50 +00:00
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
<executions>
<execution>
<id>unpack-wildfly</id>
2014-01-07 19:37:50 +00:00
<phase>prepare-package</phase>
<goals>
<goal>unpack</goal>
</goals>
<configuration>
<artifactItems>
<artifactItem>
<groupId>org.wildfly</groupId>
<artifactId>wildfly-dist</artifactId>
<version>${wildfly.version}</version>
2014-01-07 19:37:50 +00:00
<type>zip</type>
<outputDirectory>${project.build.directory}/unpacked</outputDirectory>
</artifactItem>
</artifactItems>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<executions>
<execution>
<id>assemble</id>
<phase>package</phase>
<goals>
<goal>single</goal>
</goals>
<configuration>
<descriptors>
<descriptor>assembly.xml</descriptor>
</descriptors>
<outputDirectory>target</outputDirectory>
<workDirectory>target/assembly/work</workDirectory>
2014-01-07 19:37:50 +00:00
<appendAssemblyId>false</appendAssemblyId>
<tarLongFileMode>gnu</tarLongFileMode>
2014-01-07 19:37:50 +00:00
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>