2014-02-05 17:28:48 +00:00
|
|
|
<?xml version="1.0"?>
|
2014-03-29 15:28:52 +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">
|
2014-02-05 17:28:48 +00:00
|
|
|
<parent>
|
|
|
|
<artifactId>keycloak-parent</artifactId>
|
|
|
|
<groupId>org.keycloak</groupId>
|
2014-03-13 15:24:38 +00:00
|
|
|
<version>1.0-beta-1-SNAPSHOT</version>
|
2014-02-12 23:44:13 +00:00
|
|
|
<relativePath>../../pom.xml</relativePath>
|
2014-02-05 17:28:48 +00:00
|
|
|
</parent>
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
|
|
|
<artifactId>keycloak-js-adapter</artifactId>
|
|
|
|
<name>Keycloak JS Integration</name>
|
|
|
|
<description />
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
|
|
<configuration>
|
2014-03-31 09:17:16 +00:00
|
|
|
<source>${maven.compiler.source}</source>
|
|
|
|
<target>${maven.compiler.target}</target>
|
2014-02-05 17:28:48 +00:00
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
|
|
|
|
</project>
|