2016-02-03 10:20:22 +00:00
|
|
|
<!--
|
|
|
|
~ Copyright 2016 Red Hat, Inc. and/or its affiliates
|
|
|
|
~ and other contributors as indicated by the @author tags.
|
|
|
|
~
|
|
|
|
~ Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
~ you may not use this file except in compliance with the License.
|
|
|
|
~ You may obtain a copy of the License at
|
|
|
|
~
|
|
|
|
~ http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
~
|
|
|
|
~ Unless required by applicable law or agreed to in writing, software
|
|
|
|
~ distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
~ See the License for the specific language governing permissions and
|
|
|
|
~ limitations under the License.
|
|
|
|
-->
|
|
|
|
|
2015-07-17 11:45:43 +00:00
|
|
|
<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/maven-v4_0_0.xsd">
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<parent>
|
2016-01-13 13:24:31 +00:00
|
|
|
<artifactId>keycloak-distribution-parent</artifactId>
|
2015-07-17 11:45:43 +00:00
|
|
|
<groupId>org.keycloak</groupId>
|
2023-03-03 10:11:44 +00:00
|
|
|
<version>999.0.0-SNAPSHOT</version>
|
2015-07-17 11:45:43 +00:00
|
|
|
</parent>
|
|
|
|
|
2016-06-22 11:40:21 +00:00
|
|
|
<artifactId>keycloak-api-docs-dist</artifactId>
|
2015-07-17 11:45:43 +00:00
|
|
|
<packaging>pom</packaging>
|
|
|
|
<name>Keycloak Docs Distribution</name>
|
|
|
|
<description/>
|
|
|
|
|
2018-03-07 22:26:54 +00:00
|
|
|
<properties>
|
2022-10-18 12:43:04 +00:00
|
|
|
<javadoc.branding>Keycloak ${project.version}</javadoc.branding>
|
2023-06-29 15:46:28 +00:00
|
|
|
<maven.compiler.release>17</maven.compiler.release>
|
2018-03-07 22:26:54 +00:00
|
|
|
</properties>
|
2015-09-17 07:13:48 +00:00
|
|
|
|
2022-10-18 12:43:04 +00:00
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.keycloak</groupId>
|
|
|
|
<artifactId>keycloak-dependencies-server-all</artifactId>
|
|
|
|
<type>pom</type>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.keycloak</groupId>
|
|
|
|
<artifactId>keycloak-admin-client</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.keycloak</groupId>
|
|
|
|
<artifactId>keycloak-authz-client</artifactId>
|
|
|
|
</dependency>
|
2024-03-01 08:47:44 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>io.quarkus.resteasy.reactive</groupId>
|
|
|
|
<artifactId>resteasy-reactive</artifactId>
|
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
2022-10-18 12:43:04 +00:00
|
|
|
<!-- Include all classes that are marked "provided" and therefore not included in the dependencies above.
|
|
|
|
This avoids warnings when generating the JavaDoc -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.jboss.logging</groupId>
|
|
|
|
<artifactId>jboss-logging-annotations</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>net.java.dev.jna</groupId>
|
|
|
|
<artifactId>jna</artifactId>
|
|
|
|
</dependency>
|
2024-05-23 11:15:10 +00:00
|
|
|
<!-- This is here because BloomFilter is used in the Javadoc within BlacklistPasswordPolicyProviderFactory -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.google.guava</groupId>
|
|
|
|
<artifactId>guava</artifactId>
|
|
|
|
</dependency>
|
2022-10-18 12:43:04 +00:00
|
|
|
</dependencies>
|
|
|
|
|
2015-07-17 11:45:43 +00:00
|
|
|
<build>
|
2016-06-22 11:40:21 +00:00
|
|
|
<finalName>keycloak-api-docs-${project.version}</finalName>
|
2015-07-17 11:45:43 +00:00
|
|
|
<plugins>
|
2015-09-17 07:13:48 +00:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-javadoc-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<minmemory>128m</minmemory>
|
2018-03-07 22:26:54 +00:00
|
|
|
<maxmemory>2400m</maxmemory>
|
|
|
|
<encoding>UTF-8</encoding>
|
2015-09-17 07:13:48 +00:00
|
|
|
<includeDependencySources>true</includeDependencySources>
|
2022-03-25 11:07:53 +00:00
|
|
|
<source>${maven.compiler.source}</source>
|
|
|
|
<failOnError>true</failOnError>
|
2015-09-17 07:13:48 +00:00
|
|
|
</configuration>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>aggregate-javadoc</id>
|
|
|
|
<phase>compile</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>javadoc</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
2015-07-17 11:45:43 +00:00
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-assembly-plugin</artifactId>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>assemble</id>
|
|
|
|
<phase>package</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>single</goal>
|
|
|
|
</goals>
|
|
|
|
<configuration>
|
|
|
|
<descriptors>
|
|
|
|
<descriptor>assembly.xml</descriptor>
|
|
|
|
</descriptors>
|
|
|
|
<appendAssemblyId>false</appendAssemblyId>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
2022-10-18 12:43:04 +00:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-javadoc-plugin</artifactId>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>aggregate-javadoc</id>
|
2017-06-26 17:53:03 +00:00
|
|
|
<configuration>
|
2022-10-18 12:43:04 +00:00
|
|
|
<includeTransitiveDependencySources>true</includeTransitiveDependencySources>
|
|
|
|
<dependencySourceIncludes>
|
|
|
|
<dependencySourceInclude>org.keycloak:*</dependencySourceInclude>
|
|
|
|
</dependencySourceIncludes>
|
2017-06-26 17:53:03 +00:00
|
|
|
</configuration>
|
2022-10-18 12:43:04 +00:00
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-deploy-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<skip>true</skip>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
2015-07-17 11:45:43 +00:00
|
|
|
</project>
|