keycloak-documentation
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.keycloak.documentation</groupId> <artifactId>keycloak-documentation</artifactId> <version>26.3.1</version> </dependency>
<?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.documentation</groupId> <artifactId>documentation-parent</artifactId> <version>26.3.1</version> <relativePath>../pom.xml</relativePath> </parent> <name>Keycloak Documentation dist</name> <description>Keycloak Documentation dist</description> <artifactId>keycloak-documentation</artifactId> <packaging>pom</packaging> <dependencies> <dependency> <groupId>org.keycloak.documentation</groupId> <artifactId>aggregation</artifactId> <version>${project.version}</version> <type>pom</type> </dependency> </dependencies> <build> <plugins> <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> </plugins> </build> </project>