2023-01-09 09:57:57 +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/xsd/maven-4.0.0.xsd">
|
|
|
|
<parent>
|
2023-01-17 12:01:43 +00:00
|
|
|
<artifactId>integration-arquillian-servers-adapter-spi</artifactId>
|
2023-01-09 09:57:57 +00:00
|
|
|
<groupId>org.keycloak.testsuite</groupId>
|
2023-03-13 14:09:16 +00:00
|
|
|
<version>999.0.0-SNAPSHOT</version>
|
2023-01-17 12:01:43 +00:00
|
|
|
<relativePath>../pom.xml</relativePath>
|
2023-01-09 09:57:57 +00:00
|
|
|
</parent>
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
|
|
|
<artifactId>keycloak-undertow-adapter-jakarta</artifactId>
|
2023-01-10 17:32:51 +00:00
|
|
|
<name>Undertow OIDC Adapter (JakartaEE)</name>
|
2023-01-09 09:57:57 +00:00
|
|
|
<packaging>jar</packaging>
|
|
|
|
|
|
|
|
<properties>
|
|
|
|
<keycloak.osgi.export>
|
|
|
|
org.keycloak.adapters.undertow.*
|
|
|
|
</keycloak.osgi.export>
|
|
|
|
<keycloak.osgi.import>
|
|
|
|
io.undertow.*;version="[1.4,3)",
|
|
|
|
javax.servlet.*;version="[3.1,5)";resolution:=optional,
|
|
|
|
*;resolution:=optional
|
|
|
|
</keycloak.osgi.import>
|
|
|
|
|
2023-01-10 17:32:51 +00:00
|
|
|
<jakarta-transformer-sources>${project.basedir}/../../../../../adapters/oidc/undertow</jakarta-transformer-sources>
|
2023-01-09 09:57:57 +00:00
|
|
|
<jakarta-transformer-target>${project.basedir}</jakarta-transformer-target>
|
|
|
|
</properties>
|
|
|
|
|
|
|
|
<dependencies>
|
2023-01-10 17:32:51 +00:00
|
|
|
<dependency>
|
2023-01-17 12:01:43 +00:00
|
|
|
<groupId>org.keycloak.testsuite</groupId>
|
2023-01-10 17:32:51 +00:00
|
|
|
<artifactId>keycloak-undertow-adapter-spi-jakarta</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
2023-01-09 09:57:57 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.jboss.logging</groupId>
|
|
|
|
<artifactId>jboss-logging</artifactId>
|
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.keycloak</groupId>
|
|
|
|
<artifactId>keycloak-core</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.keycloak</groupId>
|
|
|
|
<artifactId>keycloak-adapter-spi</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.keycloak</groupId>
|
|
|
|
<artifactId>keycloak-adapter-core</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.httpcomponents</groupId>
|
|
|
|
<artifactId>httpclient</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.bouncycastle</groupId>
|
2023-07-20 09:57:18 +00:00
|
|
|
<artifactId>bcprov-jdk18on</artifactId>
|
2023-01-09 09:57:57 +00:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.fasterxml.jackson.core</groupId>
|
|
|
|
<artifactId>jackson-core</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.fasterxml.jackson.core</groupId>
|
|
|
|
<artifactId>jackson-databind</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.fasterxml.jackson.core</groupId>
|
|
|
|
<artifactId>jackson-annotations</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>jakarta.servlet</groupId>
|
|
|
|
<artifactId>jakarta.servlet-api</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>io.undertow</groupId>
|
|
|
|
<artifactId>undertow-servlet</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>io.undertow</groupId>
|
|
|
|
<artifactId>undertow-core</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>junit</groupId>
|
|
|
|
<artifactId>junit</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-antrun-plugin</artifactId>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>transform</id>
|
|
|
|
<phase>initialize</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>run</goal>
|
|
|
|
</goals>
|
|
|
|
<configuration>
|
|
|
|
<target>
|
|
|
|
<property name="plugin_classpath" refid="maven.plugin.classpath" />
|
2023-04-18 12:27:23 +00:00
|
|
|
<java classname="org.eclipse.transformer.jakarta.JakartaTransformer" fork="true">
|
|
|
|
<jvmarg value="${ant.jvm.args}"/>
|
2023-01-09 09:57:57 +00:00
|
|
|
<arg value="-o" />
|
|
|
|
<arg value="${jakarta-transformer-sources}" />
|
|
|
|
<arg value="${jakarta-transformer-target}/tmp" />
|
|
|
|
<classpath>
|
|
|
|
<pathelement path="${plugin_classpath}" />
|
|
|
|
</classpath>
|
|
|
|
</java>
|
|
|
|
<touch>
|
|
|
|
<fileset dir="${jakarta-transformer-target}"/>
|
|
|
|
</touch>
|
|
|
|
<copy todir="${jakarta-transformer-target}" overwrite="false">
|
|
|
|
<fileset dir="${jakarta-transformer-target}/tmp"/>
|
|
|
|
</copy>
|
|
|
|
<delete dir="${jakarta-transformer-target}/tmp"/>
|
|
|
|
</target>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.transformer</groupId>
|
|
|
|
<artifactId>org.eclipse.transformer.cli</artifactId>
|
|
|
|
<version>0.2.0</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>ant-contrib</groupId>
|
|
|
|
<artifactId>ant-contrib</artifactId>
|
|
|
|
<version>1.0b3</version>
|
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>ant</groupId>
|
|
|
|
<artifactId>ant</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
|
|
|
|
</project>
|