keycloak-scim/model/api/pom.xml

52 lines
1.8 KiB
XML
Raw Normal View History

2013-10-02 13:54:26 +00:00
<?xml version="1.0"?>
<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">
2013-10-02 13:54:26 +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>
2013-10-02 13:54:26 +00:00
<relativePath>../../pom.xml</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>keycloak-model-api</artifactId>
<name>Keycloak Model API</name>
<description/>
<dependencies>
<dependency>
<groupId>net.iharder</groupId>
<artifactId>base64</artifactId>
</dependency>
<dependency>
<groupId>org.bouncycastle</groupId>
<artifactId>bcprov-jdk16</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.keycloak</groupId>
<artifactId>keycloak-core</artifactId>
<version>${project.version}</version>
<scope>provided</scope>
</dependency>
2013-12-03 12:53:26 +00:00
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
2013-10-02 13:54:26 +00:00
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>${maven.compiler.source}</source>
<target>${maven.compiler.target}</target>
2013-10-02 13:54:26 +00:00
</configuration>
</plugin>
</plugins>
</build>
</project>