75 lines
2.8 KiB
XML
75 lines
2.8 KiB
XML
|
<?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-parent</artifactId>
|
||
|
<groupId>org.keycloak</groupId>
|
||
|
<version>1.0-alpha-1-SNAPSHOT</version>
|
||
|
<relativePath>../../../pom.xml</relativePath>
|
||
|
</parent>
|
||
|
<modelVersion>4.0.0</modelVersion>
|
||
|
<groupId>org.keycloak.example.as7.demo</groupId>
|
||
|
<artifactId>oauth-client-cdi-example</artifactId>
|
||
|
<packaging>war</packaging>
|
||
|
<name>Simple OAuth Client Using CDI and JSF</name>
|
||
|
<description/>
|
||
|
|
||
|
<dependencies>
|
||
|
<dependency>
|
||
|
<groupId>org.jboss.spec.javax.servlet</groupId>
|
||
|
<artifactId>jboss-servlet-api_3.0_spec</artifactId>
|
||
|
<version>1.0.1.Final</version>
|
||
|
<scope>provided</scope>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>javax.enterprise</groupId>
|
||
|
<artifactId>cdi-api</artifactId>
|
||
|
<version>1.0-SP4</version>
|
||
|
<scope>provided</scope>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.jboss.spec.javax.faces</groupId>
|
||
|
<artifactId>jboss-jsf-api_2.1_spec</artifactId>
|
||
|
<version>2.0.1.Final</version>
|
||
|
<scope>provided</scope>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.jboss.logging</groupId>
|
||
|
<artifactId>jboss-logging</artifactId>
|
||
|
<version>3.1.2.GA</version>
|
||
|
<scope>provided</scope>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.keycloak</groupId>
|
||
|
<artifactId>keycloak-servlet-oauth-client</artifactId>
|
||
|
<version>${project.version}</version>
|
||
|
</dependency>
|
||
|
</dependencies>
|
||
|
|
||
|
<build>
|
||
|
<finalName>oauth-client-cdi</finalName>
|
||
|
<plugins>
|
||
|
<plugin>
|
||
|
<groupId>org.jboss.as.plugins</groupId>
|
||
|
<artifactId>jboss-as-maven-plugin</artifactId>
|
||
|
<version>7.4.Final</version>
|
||
|
</plugin>
|
||
|
<plugin>
|
||
|
<groupId>org.apache.maven.plugins</groupId>
|
||
|
<artifactId>maven-deploy-plugin</artifactId>
|
||
|
<configuration>
|
||
|
<skip>true</skip>
|
||
|
</configuration>
|
||
|
</plugin>
|
||
|
<plugin>
|
||
|
<groupId>org.apache.maven.plugins</groupId>
|
||
|
<artifactId>maven-compiler-plugin</artifactId>
|
||
|
<configuration>
|
||
|
<source>1.6</source>
|
||
|
<target>1.6</target>
|
||
|
</configuration>
|
||
|
</plugin>
|
||
|
</plugins>
|
||
|
</build>
|
||
|
</project>
|