2016-02-03 10:20:22 +00:00
|
|
|
<!--
|
|
|
|
~ Copyright 2016 Red Hat, Inc. and/or its affiliates
|
|
|
|
~ and other contributors as indicated by the @author tags.
|
|
|
|
~
|
|
|
|
~ Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
~ you may not use this file except in compliance with the License.
|
|
|
|
~ You may obtain a copy of the License at
|
|
|
|
~
|
|
|
|
~ http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
~
|
|
|
|
~ Unless required by applicable law or agreed to in writing, software
|
|
|
|
~ distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
~ See the License for the specific language governing permissions and
|
|
|
|
~ limitations under the License.
|
|
|
|
-->
|
|
|
|
|
2015-06-10 22:00:24 +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>
|
|
|
|
<parent>
|
2016-01-13 13:24:31 +00:00
|
|
|
<artifactId>keycloak-distribution-parent</artifactId>
|
2015-06-10 22:00:24 +00:00
|
|
|
<groupId>org.keycloak</groupId>
|
2017-01-26 05:18:11 +00:00
|
|
|
<version>3.0.0.CR1-SNAPSHOT</version>
|
2015-06-10 22:00:24 +00:00
|
|
|
</parent>
|
|
|
|
|
2016-01-13 13:24:31 +00:00
|
|
|
<artifactId>keycloak-server-overlay</artifactId>
|
2015-06-10 22:00:24 +00:00
|
|
|
<packaging>pom</packaging>
|
2016-01-13 13:24:31 +00:00
|
|
|
<name>Keycloak Server Overlay Distribution</name>
|
2015-06-10 22:00:24 +00:00
|
|
|
<description/>
|
|
|
|
|
2016-01-13 13:24:31 +00:00
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.keycloak</groupId>
|
|
|
|
<artifactId>keycloak-server-dist</artifactId>
|
|
|
|
<type>zip</type>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
<build>
|
|
|
|
<finalName>keycloak-overlay-${project.version}</finalName>
|
2016-10-28 07:43:51 +00:00
|
|
|
<resources></resources>
|
2016-01-13 13:24:31 +00:00
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-dependency-plugin</artifactId>
|
|
|
|
<executions>
|
2016-08-22 20:09:16 +00:00
|
|
|
<execution>
|
|
|
|
<id>unpack</id>
|
|
|
|
<phase>compile</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>unpack</goal>
|
|
|
|
</goals>
|
|
|
|
<configuration>
|
|
|
|
<artifactItems>
|
|
|
|
<artifactItem>
|
|
|
|
<groupId>org.keycloak</groupId>
|
|
|
|
<artifactId>keycloak-wildfly-server-subsystem</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
<type>jar</type>
|
|
|
|
<includes>cli/*.cli</includes>
|
|
|
|
<outputDirectory>${project.build.directory}</outputDirectory>
|
|
|
|
</artifactItem>
|
|
|
|
</artifactItems>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
2016-01-13 13:24:31 +00:00
|
|
|
<execution>
|
|
|
|
<id>unpack-server-dist</id>
|
|
|
|
<phase>prepare-package</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>unpack</goal>
|
|
|
|
</goals>
|
|
|
|
<configuration>
|
|
|
|
<artifactItems>
|
|
|
|
<artifactItem>
|
|
|
|
<groupId>org.keycloak</groupId>
|
|
|
|
<artifactId>keycloak-server-dist</artifactId>
|
|
|
|
<type>zip</type>
|
|
|
|
<outputDirectory>${project.build.directory}/unpacked</outputDirectory>
|
|
|
|
</artifactItem>
|
|
|
|
</artifactItems>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
2016-10-28 07:43:51 +00:00
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-resources-plugin</artifactId>
|
|
|
|
<version>2.5</version>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>copy-resources</id>
|
|
|
|
<phase>prepare-package</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>copy-resources</goal>
|
|
|
|
</goals>
|
|
|
|
<configuration>
|
|
|
|
<outputDirectory>target</outputDirectory>
|
|
|
|
<resources>
|
|
|
|
<resource>
|
|
|
|
<directory>src/main</directory>
|
|
|
|
<filtering>true</filtering>
|
|
|
|
</resource>
|
|
|
|
</resources>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
2016-01-13 13:24:31 +00:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<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>
|
|
|
|
<recompressZippedFiles>true</recompressZippedFiles>
|
|
|
|
<finalName>${project.build.finalName}</finalName>
|
|
|
|
<appendAssemblyId>false</appendAssemblyId>
|
|
|
|
<outputDirectory>${project.build.directory}</outputDirectory>
|
|
|
|
<workDirectory>${project.build.directory}/assembly/work</workDirectory>
|
|
|
|
<tarLongFileMode>gnu</tarLongFileMode>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
2017-01-06 02:25:41 +00:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-antrun-plugin</artifactId>
|
|
|
|
<inherited>false</inherited>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>merge-cli</id>
|
|
|
|
<phase>prepare-package</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>run</goal>
|
|
|
|
</goals>
|
|
|
|
<configuration>
|
|
|
|
<target>
|
|
|
|
<concat destfile="${project.build.directory}/cli/keycloak-install.cli" force="yes">
|
|
|
|
<fileset dir="${project.build.directory}/cli">
|
|
|
|
<include name="keycloak-install-base.cli"/>
|
|
|
|
</fileset>
|
|
|
|
<fileset dir="${project.build.directory}/cli">
|
|
|
|
<include name="default-keycloak-subsys-config.cli"/>
|
|
|
|
</fileset>
|
|
|
|
</concat>
|
|
|
|
<concat destfile="${project.build.directory}/cli/keycloak-install-ha.cli" force="yes">
|
|
|
|
<fileset dir="${project.build.directory}/cli">
|
|
|
|
<include name="keycloak-install-ha-base.cli"/>
|
|
|
|
</fileset>
|
|
|
|
<fileset dir="${project.build.directory}/cli">
|
|
|
|
<include name="default-keycloak-subsys-config.cli"/>
|
|
|
|
</fileset>
|
|
|
|
</concat>
|
|
|
|
<delete file="${project.build.directory}/cli/default-keycloak-subsys-config.cli"/>
|
|
|
|
<delete file="${project.build.directory}/cli/keycloak-install-base.cli"/>
|
|
|
|
<delete file="${project.build.directory}/cli/keycloak-install-ha-base.cli"/>
|
|
|
|
</target>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
2016-01-13 13:24:31 +00:00
|
|
|
</plugins>
|
|
|
|
</build>
|
2015-06-10 22:00:24 +00:00
|
|
|
|
|
|
|
</project>
|