2017-09-05 07:49:24 +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">
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
2021-12-14 10:19:28 +00:00
|
|
|
|
|
|
|
<properties>
|
2022-01-12 11:08:09 +00:00
|
|
|
<version.log4j>2.17.1</version.log4j>
|
2021-12-14 10:19:28 +00:00
|
|
|
</properties>
|
|
|
|
|
2017-09-05 07:49:24 +00:00
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-jar-plugin</artifactId>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>default-jar</id>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
|
2023-03-21 14:17:14 +00:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-javadoc-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<skip>true</skip>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-deploy-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<skip>true</skip>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
|
2017-09-05 07:49:24 +00:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-install-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<skip>true</skip>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
2023-03-21 07:49:08 +00:00
|
|
|
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-gpg-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<skip>true</skip>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
2017-09-05 07:49:24 +00:00
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
|
|
|
|
<parent>
|
|
|
|
<groupId>org.keycloak.documentation</groupId>
|
|
|
|
<artifactId>documentation-parent</artifactId>
|
2023-03-03 10:12:08 +00:00
|
|
|
<version>999.0.0-SNAPSHOT</version>
|
2023-03-28 10:35:27 +00:00
|
|
|
<relativePath>../pom.xml</relativePath>
|
2017-09-05 07:49:24 +00:00
|
|
|
</parent>
|
|
|
|
|
2023-03-28 10:35:27 +00:00
|
|
|
<name>Keycloak Documentation tests</name>
|
2017-09-05 07:49:24 +00:00
|
|
|
<artifactId>tests</artifactId>
|
|
|
|
<packaging>jar</packaging>
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.keycloak.documentation</groupId>
|
|
|
|
<artifactId>api-documentation</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
<type>pom</type>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.keycloak.documentation</groupId>
|
|
|
|
<artifactId>authorization-services</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
<type>pom</type>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.keycloak.documentation</groupId>
|
|
|
|
<artifactId>securing-apps</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
<type>pom</type>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.keycloak.documentation</groupId>
|
|
|
|
<artifactId>server-admin</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
<type>pom</type>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.keycloak.documentation</groupId>
|
|
|
|
<artifactId>server-development</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
<type>pom</type>
|
|
|
|
</dependency>
|
2023-03-28 10:35:27 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.keycloak.documentation</groupId>
|
|
|
|
<artifactId>upgrading</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
<type>pom</type>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.keycloak.documentation</groupId>
|
|
|
|
<artifactId>release-notes</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
<type>pom</type>
|
|
|
|
</dependency>
|
2017-09-05 07:49:24 +00:00
|
|
|
|
|
|
|
<dependency>
|
2021-11-12 11:34:19 +00:00
|
|
|
<groupId>org.junit.jupiter</groupId>
|
|
|
|
<artifactId>junit-jupiter</artifactId>
|
|
|
|
<version>5.8.1</version>
|
2017-09-05 07:49:24 +00:00
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>commons-io</groupId>
|
|
|
|
<artifactId>commons-io</artifactId>
|
2021-11-10 08:53:54 +00:00
|
|
|
<version>2.7</version>
|
2017-09-05 07:49:24 +00:00
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2020-02-05 07:50:15 +00:00
|
|
|
<groupId>org.apache.logging.log4j</groupId>
|
|
|
|
<artifactId>log4j-api</artifactId>
|
2021-12-14 10:19:28 +00:00
|
|
|
<version>${version.log4j}</version>
|
2020-02-05 07:50:15 +00:00
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.logging.log4j</groupId>
|
|
|
|
<artifactId>log4j-core</artifactId>
|
2021-12-14 10:19:28 +00:00
|
|
|
<version>${version.log4j}</version>
|
2017-09-05 07:49:24 +00:00
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2019-11-06 09:57:00 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.asciidoctor</groupId>
|
|
|
|
<artifactId>asciidoctorj</artifactId>
|
|
|
|
<version>2.1.0</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2020-03-26 07:17:45 +00:00
|
|
|
<dependency>
|
2020-07-22 13:37:53 +00:00
|
|
|
<groupId>org.apache.httpcomponents.client5</groupId>
|
|
|
|
<artifactId>httpclient5</artifactId>
|
|
|
|
<version>5.0.1</version>
|
2020-03-26 07:17:45 +00:00
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2023-03-28 10:35:27 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.slf4j</groupId>
|
2023-05-05 11:57:45 +00:00
|
|
|
<artifactId>slf4j-reload4j</artifactId>
|
2023-03-28 10:35:27 +00:00
|
|
|
</dependency>
|
2017-09-05 07:49:24 +00:00
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
</project>
|