A standalone documentation-only project that demonstrates the IKE AsciiDoc pipeline. Use this as a template for creating new documentation projects.
- Artifact:
network.ike.examples:doc-example - Packaging:
pomwith<classifier>adoc</classifier>source attachment - Parent:
network.ike.platform:ike-parent
# HTML only:
mvn clean verify
# HTML + Prawn PDF:
mvn clean verify -Dike.pdf.prawn
# HTML + FOP PDF:
mvn clean verify -Dike.pdf.fop<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.1.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.1.0
http://maven.apache.org/xsd/maven-4.1.0.xsd">
<modelVersion>4.1.0</modelVersion>
<parent>
<groupId>network.ike.platform</groupId>
<artifactId>ike-parent</artifactId>
<version>54</version>
<relativePath/>
</parent>
<groupId>com.example</groupId>
<artifactId>my-docs</artifactId>
<version>1.0.0-SNAPSHOT</version>
<!-- Classifier-canonical doc shape (ike-issues#321): pom
packaging with the asciidoc source attached as
<classifier>adoc</classifier> by ike-parent's
doc-pipeline profile. -->
<packaging>pom</packaging>
<name>My Documentation Project</name>
<!-- Required (ike-issues#383): declare the gh-pages publish
location explicitly. ike-parent's inherited template
points to the in-reactor location and a build enforcer
fails consumers that don't override. -->
<distributionManagement>
<site>
<id>ike-site</id>
<url>https://ike.network/${project.artifactId}/</url>
</site>
</distributionManagement>
<dependencies>
<dependency>
<groupId>network.ike.tooling</groupId>
<artifactId>ike-build-standards</artifactId>
<classifier>claude</classifier>
<type>zip</type>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>network.ike.docs</groupId>
<artifactId>minimal-fonts</artifactId>
<type>zip</type>
</dependency>
</dependencies>
</project>= My Document Title
:author: Your Name
:revnumber: {project-version}
:revdate: {docdate}
:doctype: book
:toc: left
:toclevels: 3
:sectnums:
:icons: font
:source-highlighter: coderay
== First Chapter
Your content here.# HTML only:
mvn clean verify
# HTML + Prawn PDF:
mvn clean verify -Dike.pdf.prawn
# HTML + FOP PDF:
mvn clean verify -Dike.pdf.fopTo override the default IKE theme, create src/theme/ike-default-theme.yml
in your project and add this property to your pom.xml:
<properties>
<asciidoc.theme.directory>${project.basedir}/src/theme</asciidoc.theme.directory>
</properties>The IKE diagram standard prefers PlantUML for most cases and GraphViz when layout precision matters. Both render server-side via Kroki — no local tools needed. Mermaid is intentionally not part of the recommended toolset.
.Build pipeline
[plantuml]
----
@startuml
left to right direction
rectangle "Source" as A
rectangle "Build" as B
rectangle "Output" as C
A --> B --> C
@enduml
----See IKE-DIAGRAMS.md
for the diagram test (when a diagram earns its place), tool
selection (PlantUML diagram-type matrix, when to use GraphViz),
and authoring conventions.
Reference formally identified terminology with k:Name[]:
The Koncept k:DiabetesMellitus[] is a metabolic disorder.For a standalone project, these artifacts must be released (or installed to your local Maven repository):
network.ike.platform:ike-parent(the parent POM)network.ike.platform:ike-bom(optional — BOM for version alignment)network.ike.docs:ike-doc-maven-plugin(idoc:*render and packaging goals)network.ike.docs:ike-doc-resourcesnetwork.ike.docs:minimal-fontsnetwork.ike.docs:docbook-xslnetwork.ike.docs:koncept-asciidoc-extensionnetwork.ike.tooling:ike-build-standardsnetwork.ike.tooling:ike-maven-plugin
| Format | Path |
|---|---|
| HTML | target/generated-docs/html/index.html |
| Self-contained HTML | target/generated-docs/html-single/{artifactId}.html |
| Prawn PDF | target/generated-docs/pdf-prawn/{artifactId}.pdf |
| FOP PDF | target/generated-docs/pdf-fop/{artifactId}.pdf |
| Prince PDF | target/generated-docs/pdf-prince/{artifactId}.pdf |
| AH PDF | target/generated-docs/pdf-ah/{artifactId}.pdf |
| WeasyPrint PDF | target/generated-docs/pdf-weasyprint/{artifactId}.pdf |
| XEP PDF | target/generated-docs/pdf-xep/{artifactId}.pdf |
This project follows the IKE Network's doc-as-code philosophy:
build conventions, documentation standards, and AI-assistant
guidance live as versioned Markdown files in
ike-build-standards
and are unpacked into every consumer's .claude/standards/ at
the validate phase. When a developer — or Claude itself —
opens this project, the agent reads those standards and applies
them automatically; contributors don't have to memorize the
conventions.
The standards most directly relevant to a documentation project are
IKE-DOC.md
(module shapes; classifier-canonical attachment),
IKE-DIAGRAMS.md
(PlantUML / GraphViz authoring; the diagram test),
IKE-ASCIIDOC-FRAGMENT.md
(fragment-style topic authoring), and
IKE-INDEX.md
(AsciiDoc index-term conventions). See the
full inventory.
- Documentation:
https://ike.network/doc-example/ - Workspace:
IKE-Network/workspace-reactor-example— clone the workspace to build doc-example alongside project-example and integration-tests-example - Build standards:
ike-build-standards - Issues:
IKE-Network/ike-issues(cross-project tracker) - Source:
IKE-Network/doc-example
New to IKE development? The Developer Environment guide covers IDE configuration, JDK 25 setup, and the tooling conventions every IKE workspace expects — start there before your first build.