2017-08-28 08:50:14 -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>
|
|
|
|
|
|
|
|
|
|
<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-08-28 08:50:14 -04:00
|
|
|
</parent>
|
|
|
|
|
|
2025-07-01 05:30:42 -04:00
|
|
|
<name>Server Developer Guide</name>
|
|
|
|
|
<description>Server Developer Guide</description>
|
|
|
|
|
|
2017-08-28 08:50:14 -04:00
|
|
|
<artifactId>server-development</artifactId>
|
2019-05-17 11:17:43 -04:00
|
|
|
<packaging>pom</packaging>
|
2017-08-28 08:50:14 -04:00
|
|
|
|
|
|
|
|
<build>
|
|
|
|
|
<plugins>
|
2018-02-13 07:31:04 -05:00
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.keycloak.documentation</groupId>
|
|
|
|
|
<artifactId>header-maven-plugin</artifactId>
|
|
|
|
|
<executions>
|
|
|
|
|
<execution>
|
|
|
|
|
<id>add-file-headers</id>
|
|
|
|
|
</execution>
|
|
|
|
|
</executions>
|
|
|
|
|
</plugin>
|
2017-08-28 08:50:14 -04:00
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.asciidoctor</groupId>
|
|
|
|
|
<artifactId>asciidoctor-maven-plugin</artifactId>
|
|
|
|
|
<executions>
|
|
|
|
|
<execution>
|
|
|
|
|
<id>asciidoc-to-html</id>
|
|
|
|
|
</execution>
|
|
|
|
|
</executions>
|
|
|
|
|
</plugin>
|
2017-08-29 03:41:23 -04:00
|
|
|
<plugin>
|
|
|
|
|
<artifactId>maven-antrun-plugin</artifactId>
|
|
|
|
|
<executions>
|
|
|
|
|
<execution>
|
|
|
|
|
<id>echo-output</id>
|
|
|
|
|
</execution>
|
|
|
|
|
</executions>
|
|
|
|
|
</plugin>
|
2017-08-28 08:50:14 -04:00
|
|
|
</plugins>
|
|
|
|
|
</build>
|
|
|
|
|
</project>
|