2017-09-05 03:49:24 -04: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 05:19:28 -05:00
<properties >
2023-09-19 05:04:01 -04:00
<!-- this property prevents the warning "WARN FilenoUtil: Native subprocess control requires open access" when using JRuby for the unit tests on JDK17 -->
<surefire.system.args >
--add-opens=java.base/sun.nio.ch=ALL-UNNAMED
--add-opens java.base/java.io=ALL-UNNAMED
</surefire.system.args>
2025-04-04 12:40:41 -04:00
<version.jsoup > 1.18.3</version.jsoup>
2021-12-14 05:19:28 -05:00
</properties>
2017-09-05 03:49:24 -04: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 10:17:14 -04: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 03:49:24 -04:00
<plugin >
<groupId > org.apache.maven.plugins</groupId>
<artifactId > maven-install-plugin</artifactId>
<configuration >
<skip > true</skip>
</configuration>
</plugin>
2023-03-21 03:49:08 -04:00
<plugin >
<groupId > org.apache.maven.plugins</groupId>
<artifactId > maven-gpg-plugin</artifactId>
<configuration >
<skip > true</skip>
</configuration>
</plugin>
2017-09-05 03:49:24 -04:00
</plugins>
</build>
<parent >
<groupId > org.keycloak.documentation</groupId>
<artifactId > documentation-parent</artifactId>
2023-03-03 05:12:08 -05:00
<version > 999.0.0-SNAPSHOT</version>
2023-03-28 06:35:27 -04:00
<relativePath > ../pom.xml</relativePath>
2017-09-05 03:49:24 -04:00
</parent>
2023-03-28 06:35:27 -04:00
<name > Keycloak Documentation tests</name>
2025-07-01 05:30:42 -04:00
<description > Keycloak Documentation tests</description>
2017-09-05 03:49:24 -04: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 > 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 06:35:27 -04: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 03:49:24 -04:00
<dependency >
2021-11-12 06:34:19 -05:00
<groupId > org.junit.jupiter</groupId>
<artifactId > junit-jupiter</artifactId>
<version > 5.8.1</version>
2017-09-05 03:49:24 -04:00
<scope > test</scope>
</dependency>
<dependency >
<groupId > commons-io</groupId>
<artifactId > commons-io</artifactId>
2025-08-14 02:08:39 -04:00
<version > 2.14.0</version>
2017-09-05 03:49:24 -04:00
<scope > test</scope>
</dependency>
2019-11-06 04:57:00 -05:00
<dependency >
<groupId > org.asciidoctor</groupId>
<artifactId > asciidoctorj</artifactId>
2023-09-19 05:04:01 -04:00
<version > 2.5.10</version>
2019-11-06 04:57:00 -05:00
<scope > test</scope>
</dependency>
2020-03-26 03:17:45 -04:00
<dependency >
2020-07-22 09:37:53 -04:00
<groupId > org.apache.httpcomponents.client5</groupId>
<artifactId > httpclient5</artifactId>
<version > 5.0.1</version>
2020-03-26 03:17:45 -04:00
<scope > test</scope>
</dependency>
2025-04-04 12:40:41 -04:00
<dependency >
<groupId > org.jsoup</groupId>
<artifactId > jsoup</artifactId>
<version > ${version.jsoup}</version>
<scope > test</scope>
</dependency>
2017-09-05 03:49:24 -04:00
</dependencies>
</project>