2016-06-17 05:07:34 +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>
<parent >
<groupId > org.keycloak</groupId>
<artifactId > keycloak-authz-parent</artifactId>
2023-03-03 10:11:44 +00:00
<version > 999.0.0-SNAPSHOT</version>
2016-06-17 05:07:34 +00:00
<relativePath > ../pom.xml</relativePath>
</parent>
2024-07-17 10:11:26 +00:00
<artifactId > keycloak-authz-client-tests</artifactId>
2016-06-17 05:07:34 +00:00
<packaging > jar</packaging>
2023-03-07 16:59:19 +00:00
<name > Keycloak Authz: Client API</name>
2024-07-17 10:11:26 +00:00
<description > Keycloak Authz: Client API. This module is supposed to be used just in the Keycloak repository for the testsuite. It is NOT supposed to be used by the 3rd party applications.
For the use by 3rd party applications, please use `org.keycloak:keycloak-authz-client` module.</description>
2016-06-17 05:07:34 +00:00
2024-09-19 08:49:42 +00:00
<properties >
<maven.compiler.source > 8</maven.compiler.source>
<maven.compiler.target > 8</maven.compiler.target>
<maven.compiler.release > 8</maven.compiler.release>
</properties>
2016-06-17 05:07:34 +00:00
<dependencies >
<dependency >
<groupId > org.keycloak</groupId>
<artifactId > keycloak-core</artifactId>
</dependency>
<dependency >
<groupId > org.jboss.logging</groupId>
<artifactId > jboss-logging</artifactId>
</dependency>
2024-04-23 08:09:06 +00:00
<dependency >
<groupId > org.jboss.logging</groupId>
<artifactId > commons-logging-jboss-logging</artifactId>
<scope > runtime</scope>
</dependency>
2016-06-17 05:07:34 +00:00
<dependency >
<groupId > org.apache.httpcomponents</groupId>
<artifactId > httpclient</artifactId>
</dependency>
<dependency >
<groupId > com.fasterxml.jackson.core</groupId>
<artifactId > jackson-core</artifactId>
<scope > provided</scope>
</dependency>
<dependency >
<groupId > com.fasterxml.jackson.core</groupId>
<artifactId > jackson-databind</artifactId>
<scope > provided</scope>
</dependency>
<dependency >
<groupId > com.fasterxml.jackson.core</groupId>
<artifactId > jackson-annotations</artifactId>
<scope > provided</scope>
</dependency>
2024-10-11 15:17:50 +00:00
<dependency >
<groupId > junit</groupId>
<artifactId > junit</artifactId>
<scope > test</scope>
</dependency>
<dependency >
<groupId > org.hamcrest</groupId>
<artifactId > hamcrest</artifactId>
<scope > test</scope>
</dependency>
2016-06-17 05:07:34 +00:00
</dependencies>
2024-09-04 15:44:56 +00:00
<build >
<plugins >
<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>
</plugins>
</build>
2016-11-20 21:19:53 +00:00
</project>