keycloak-scim/integration/undertow/pom.xml

89 lines
3 KiB
XML
Raw Normal View History

2013-11-15 19:15:33 +00:00
<?xml version="1.0"?>
<project>
<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-12-02 13:48:28 +00:00
<relativePath>../../pom.xml</relativePath>
2013-11-15 19:15:33 +00:00
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>keycloak-undertow-adapter</artifactId>
<name>Keycloak Undertow Integration</name>
<description/>
<dependencies>
<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-core</artifactId>
<version>${project.version}</version>
</dependency>
2013-12-14 00:53:02 +00:00
<dependency>
<groupId>org.keycloak</groupId>
<artifactId>keycloak-adapter-core</artifactId>
<version>${project.version}</version>
</dependency>
2013-11-15 19:15:33 +00:00
<dependency>
2013-12-17 17:07:02 +00:00
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpclient</artifactId>
2014-01-07 19:37:50 +00:00
<version>${keycloak.apache.httpcomponents.version}</version>
2013-11-15 19:15:33 +00:00
</dependency>
<dependency>
2013-12-17 17:07:02 +00:00
<groupId>org.bouncycastle</groupId>
<artifactId>bcprov-jdk16</artifactId>
</dependency>
<dependency>
<groupId>org.codehaus.jackson</groupId>
<artifactId>jackson-core-asl</artifactId>
</dependency>
<dependency>
<groupId>org.codehaus.jackson</groupId>
<artifactId>jackson-mapper-asl</artifactId>
2013-11-15 19:15:33 +00:00
</dependency>
<dependency>
2013-12-17 17:07:02 +00:00
<groupId>org.codehaus.jackson</groupId>
<artifactId>jackson-xc</artifactId>
</dependency>
<dependency>
<groupId>org.jboss.spec.javax.servlet</groupId>
<artifactId>jboss-servlet-api_3.0_spec</artifactId>
2013-11-15 19:15:33 +00:00
<scope>provided</scope>
</dependency>
<dependency>
<groupId>io.undertow</groupId>
<artifactId>undertow-servlet</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>io.undertow</groupId>
<artifactId>undertow-core</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<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>