keycloak-scim/examples/demo-template/pom.xml

45 lines
1.5 KiB
XML
Raw Normal View History

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>
<artifactId>keycloak-parent</artifactId>
<groupId>org.keycloak</groupId>
2014-01-24 09:34:54 +00:00
<version>1.0-alpha-2-SNAPSHOT</version>
2013-11-15 19:15:33 +00:00
<relativePath>../../pom.xml</relativePath>
</parent>
<name>Examples</name>
<description/>
<modelVersion>4.0.0</modelVersion>
<groupId>org.keycloak</groupId>
2014-01-17 03:16:50 +00:00
<artifactId>demo-pom</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>
<plugin>
<groupId>org.jboss.as.plugins</groupId>
<artifactId>jboss-as-maven-plugin</artifactId>
2013-12-18 23:01:47 +00:00
<version>7.1.1.Final</version>
2013-11-15 19:15:33 +00:00
<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>
<module>product-app</module>
<module>database-service</module>
<module>third-party</module>
<module>third-party-cdi</module>
2013-11-15 19:15:33 +00:00
</modules>
</project>