AsciidocFX icon indicating copy to clipboard operation
AsciidocFX copied to clipboard

Maven integration

Open pswvg opened this issue 9 years ago • 7 comments

I just took a look at asciidoc and how to integrate document generation to PDF/HTML via the asciidoctor maven plugin: http://asciidoctor.org/docs/asciidoctor-maven-plugin/.

Then I stumbled over asciidocfx and I'm impressed what powerful extensions it brings (charts, UML diagrams etc.). Of course now I'm wondering, whether any maven integration is planned for automatically generate different documentation from the asciidoc - including the extensions. It looks like asciidocfx has everything it needs for auto-generating the documentation.

pswvg avatar Nov 19 '15 14:11 pswvg

Thank you guy, yes we can write a maven-plugin for asciidocfx

rahmanusta avatar Nov 20 '15 07:11 rahmanusta

That would be awesome :)!

pswvg avatar Nov 20 '15 08:11 pswvg

i second that! :-) :+1:

sikron avatar Nov 20 '15 08:11 sikron

:+1:

mscookies avatar Aug 18 '16 09:08 mscookies

👍

manzke avatar Aug 26 '16 12:08 manzke

:thumbsup:

sbeaupre avatar Sep 06 '16 09:09 sbeaupre

Think support for uml & plantuml already means that the existing plugins would work:

https://github.com/asciidoctor/asciidoctor-maven-examples/tree/master/asciidoctor-diagram-example

eg. [uml,my.png] & [plantuml,my,png]

<plugin> <groupId>org.asciidoctor</groupId> <artifactId>asciidoctor-maven-plugin</artifactId> <version>${asciidoctor.version}</version> <dependencies> <dependency> <groupId>org.asciidoctor</groupId> <artifactId>asciidoctorj-diagram</artifactId> <version>${asciidoctorj-diagram.version}</version> </dependency> ...

AndyGee avatar Apr 08 '20 15:04 AndyGee