2013-11-15 19:15:33 +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">
|
|
|
|
<parent>
|
2015-04-22 17:11:46 +00:00
|
|
|
<artifactId>keycloak-examples-parent</artifactId>
|
2013-11-15 19:15:33 +00:00
|
|
|
<groupId>org.keycloak</groupId>
|
2015-05-05 09:45:21 +00:00
|
|
|
<version>1.3.0.Beta1-SNAPSHOT</version>
|
2013-11-15 19:15:33 +00:00
|
|
|
</parent>
|
2015-04-22 17:11:46 +00:00
|
|
|
|
2013-11-15 19:15:33 +00:00
|
|
|
<name>Examples</name>
|
|
|
|
<description/>
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
2015-04-22 17:11:46 +00:00
|
|
|
<artifactId>keycloak-examples-demo-parent</artifactId>
|
2013-11-15 19:15:33 +00:00
|
|
|
<packaging>pom</packaging>
|
|
|
|
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-deploy-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<skip>true</skip>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
<modules>
|
2014-01-07 19:37:50 +00:00
|
|
|
<!-- <module>server</module> -->
|
2013-11-15 19:15:33 +00:00
|
|
|
<module>customer-app</module>
|
2014-03-06 11:26:21 +00:00
|
|
|
<module>customer-app-cli</module>
|
2014-02-25 00:58:54 +00:00
|
|
|
<module>customer-app-js</module>
|
2013-11-15 19:15:33 +00:00
|
|
|
<module>product-app</module>
|
2014-08-12 14:03:20 +00:00
|
|
|
<module>example-ear</module>
|
2014-05-23 22:20:55 +00:00
|
|
|
<module>admin-access-app</module>
|
2014-05-13 16:07:28 +00:00
|
|
|
<module>angular-product-app</module>
|
2013-11-15 19:15:33 +00:00
|
|
|
<module>database-service</module>
|
|
|
|
<module>third-party</module>
|
2014-01-13 17:04:02 +00:00
|
|
|
<module>third-party-cdi</module>
|
2013-11-15 19:15:33 +00:00
|
|
|
</modules>
|
2015-05-06 14:51:49 +00:00
|
|
|
|
|
|
|
<profiles>
|
|
|
|
<profile>
|
|
|
|
<id>no-keycloak-json</id>
|
|
|
|
<activation>
|
|
|
|
<property>
|
|
|
|
<name>no-keycloak-json</name>
|
|
|
|
</property>
|
|
|
|
</activation>
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-war-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<packagingExcludes>**/keycloak.json</packagingExcludes>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
</profile>
|
|
|
|
</profiles>
|
2013-11-15 19:15:33 +00:00
|
|
|
</project>
|