keycloak-api-docs-dist
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.keycloak</groupId> <artifactId>keycloak-api-docs-dist</artifactId> <version>26.3.1</version> </dependency>
<!-- ~ 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. --> <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> <artifactId>keycloak-distribution-parent</artifactId> <groupId>org.keycloak</groupId> <version>26.3.1</version> </parent> <artifactId>keycloak-api-docs-dist</artifactId> <packaging>pom</packaging> <name>Keycloak Docs Distribution</name> <description>Keycloak Docs Distribution</description> <properties> <javadoc.branding>Keycloak ${project.version}</javadoc.branding> </properties> <dependencies> <dependency> <groupId>org.keycloak</groupId> <artifactId>keycloak-dependencies-server-all</artifactId> <type>pom</type> </dependency> <dependency> <groupId>io.quarkus</groupId> <artifactId>quarkus-micrometer</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>org.keycloak</groupId> <artifactId>keycloak-admin-client-tests</artifactId> </dependency> <dependency> <groupId>org.keycloak</groupId> <artifactId>keycloak-authz-client-tests</artifactId> </dependency> <dependency> <groupId>io.quarkus.resteasy.reactive</groupId> <artifactId>resteasy-reactive</artifactId> <scope>provided</scope> </dependency> <!-- 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> <!-- This is here because BloomFilter is used in the Javadoc within BlacklistPasswordPolicyProviderFactory --> <dependency> <groupId>com.google.guava</groupId> <artifactId>guava</artifactId> </dependency> <dependency> <groupId>com.fasterxml.jackson.datatype</groupId> <artifactId>jackson-datatype-jsr310</artifactId> </dependency> <dependency> <groupId>org.infinispan</groupId> <artifactId>infinispan-component-annotations</artifactId> </dependency> </dependencies> <build> <finalName>keycloak-api-docs-${project.version}</finalName> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <configuration> <minmemory>128m</minmemory> <maxmemory>2400m</maxmemory> <encoding>UTF-8</encoding> <includeDependencySources>true</includeDependencySources> <failOnError>true</failOnError> <includeTransitiveDependencySources>true</includeTransitiveDependencySources> <dependencySourceIncludes> <dependencySourceInclude>org.keycloak:*</dependencySourceInclude> </dependencySourceIncludes> <dependencySourceExcludes> <dependencySourceInclude>org.keycloak:keycloak-operator</dependencySourceInclude> </dependencySourceExcludes> </configuration> <executions> <execution> <id>aggregate-javadoc</id> <phase>compile</phase> <goals> <goal>aggregate</goal> </goals> </execution> </executions> </plugin> <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> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-deploy-plugin</artifactId> <configuration> <skip>true</skip> </configuration> </plugin> </plugins> </build> </project>