Ubuntu Linux 如何使用 Maven 在 IntelliJ 中构建 ascidoc PDF

How to build ascidoc PDF in IntelliJ with Maven on Ubuntu Linux

我的系统设置如下:

我在 IntelliJ 中有一个项目,我想在其中使用 asciidocs 的 asciidoctor 变体。我创建了一个 adoc 文件,现在我想从该文件创建 PDF。

我试过:

mvn clean install -Pbuild-release-notes

但是我找不到任何 PDF 文件。

查看此 asciidoctor-pdf-example 项目中的 POM 文件 (pom.xml)。

当你运行:

mvn clean process-resources

(maven命令依赖于POM文件中的asciidoctor-maven-plugin配置)

您可以从命令行或 IDE 运行 maven,您将在 target/generated-docs.

中获得您的 PDF