Skip to content

Commit

Permalink
[#299][#459] use latest asciidoctor-maven-plugin in sample "generate …
Browse files Browse the repository at this point in the history
…man pages" Maven project
  • Loading branch information
remkop committed Feb 11, 2020
1 parent 7dc92af commit 8359c27
Showing 1 changed file with 2 additions and 12 deletions.
14 changes: 2 additions & 12 deletions picocli-examples/generate-man-pages/example-maven-project/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@
<arguments>
<argument>--outdir=${project.build.directory}/generated-picocli-docs</argument>
<argument>-v</argument>
<!-- <argument>&#45;&#45;template-dir=src/docs/mantemplates</argument>-->
<!-- <argument>&#45;&#45;template-dir=src/docs/mantemplates</argument>-->
<argument>com.company.Main</argument>
<!-- <argument>com.your.package.YourCommand2</argument>-->
</arguments>
Expand All @@ -74,7 +74,7 @@
<plugin>
<groupId>org.asciidoctor</groupId>
<artifactId>asciidoctor-maven-plugin</artifactId>
<version>1.5.6</version>
<version>1.6.0</version>
<executions>
<execution>
<id>output-html</id>
Expand All @@ -86,10 +86,6 @@
<configuration>
<sourceHighlighter>coderay</sourceHighlighter>
<backend>html5</backend>
<!-- <attributes>-->
<!-- <toc/>-->
<!-- <linkcss>false</linkcss>-->
<!-- </attributes>-->
</configuration>
</execution>
<execution>
Expand All @@ -102,17 +98,11 @@
<configuration>
<sourceHighlighter>coderay</sourceHighlighter>
<backend>manpage</backend>
<!-- <attributes>-->
<!-- <toc/>-->
<!-- <linkcss>false</linkcss>-->
<!-- </attributes>-->
</configuration>
</execution>
</executions>
<configuration>
<sourceDirectory>${project.build.directory}/generated-picocli-docs</sourceDirectory>
<!-- <headerFooter>true</headerFooter>-->
<!-- <imagesDir>../resources/images</imagesDir>-->
</configuration>
</plugin>
</plugins>
Expand Down

0 comments on commit 8359c27

Please sign in to comment.