Trying to build documentation I can't find flowable-docbook-tool

I’m trying to build documentation I can’t find flowable-docbook-tool.

How can I build flowable-docbook-tool? Where is the source code for it?

Thanks

Hi.

Do you mean this?

https://github.com/flowable/flowable-engine/tree/master/userguide/src/en

Regards,

Yvo

There is pom.xml inside userguide directory. It refers to maven plugin
called ‘flowable-docbook-tool’.
I can’t find that plugin

Thanks

The pom is not used anymore for building the docs. We’ll update that.
Following the instructions in the readme.txt in the provided link for building the docs.

Regards,

Yvo

Try to build userguide with Maven?
Well, you need to change POM. Comment or delete the dependency for flowable-docbook-tool, and add plugin asciidoctor-maven-plugin as follows:

...
<build>
	<plugins>
		<plugin>
			<groupId>org.asciidoctor</groupId>
			<artifactId>asciidoctor-maven-plugin</artifactId>
			<version>1.5.5</version>
			<executions>
				<execution>
					<id>output-html</id>
					<phase>generate-resources</phase>
					<goals>
						<goal>process-asciidoc</goal>
					</goals>
				</execution>
			</executions>
			<configuration>
				<sourceDirectory>src/en</sourceDirectory>
				<outputDirectory>target/output</outputDirectory>
				<imagesDir>./</imagesDir>
				<backend>html</backend>
				<doctype>book</doctype>
				<attributes>
					<stylesheet>flowable.css</stylesheet>
				</attributes>
			</configuration>
		</plugin>

		...
	</plugins>
</build>
...