keycloak-scim/examples/demo-template/customer-app-cli/pom.xml

40 lines
1.4 KiB
XML
Raw Normal View History

2014-03-06 11:26:21 +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-examples-demo-parent</artifactId>
2014-03-06 11:26:21 +00:00
<groupId>org.keycloak</groupId>
2015-06-12 12:35:34 +00:00
<version>1.4.0.Final-SNAPSHOT</version>
2014-03-06 11:26:21 +00:00
</parent>
2014-03-06 11:26:21 +00:00
<modelVersion>4.0.0</modelVersion>
<groupId>org.keycloak.example.demo</groupId>
<artifactId>customer-portal-cli-example</artifactId>
2014-03-07 02:13:55 +00:00
<packaging>jar</packaging>
2014-03-06 11:26:21 +00:00
<name>Customer Portal CLI</name>
<description/>
<dependencies>
<dependency>
<groupId>org.keycloak</groupId>
<artifactId>keycloak-installed-adapter</artifactId>
2014-03-06 11:26:21 +00:00
</dependency>
2014-05-29 13:04:10 +00:00
<dependency>
<groupId>org.jboss.logging</groupId>
<artifactId>jboss-logging</artifactId>
</dependency>
2014-03-06 11:26:21 +00:00
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>exec-maven-plugin</artifactId>
<configuration>
<mainClass>org.keycloak.example.CustomerCli</mainClass>
</configuration>
</plugin>
</plugins>
</build>
</project>