Skip to content

Commit

Permalink
Fix basic maven setup snippet. (#667) (#668)
Browse files Browse the repository at this point in the history
`<dependencies>` is missing, not a valid declaration as presented.

(cherry picked from commit d5dd5e1)

Co-authored-by: Michael Simons <[email protected]>
  • Loading branch information
abelsromero and michael-simons authored Dec 20, 2023
1 parent c742055 commit b749e3c
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions docs/modules/plugin/partials/basic-maven-setup.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,13 @@ As this is a typical Maven plugin, simply declare the plugin in the `<plugins>`
<groupId>org.asciidoctor</groupId>
<artifactId>asciidoctor-maven-plugin</artifactId>
<version>{release-version}</version>
<dependency> <!--1-->
<groupId>org.asciidoctor</groupId>
<artifactId>asciidoctorj</artifactId>
<version>${asciidoctorj.version}</version>
</dependency>
<dependencies>
<dependency> <!--1-->
<groupId>org.asciidoctor</groupId>
<artifactId>asciidoctorj</artifactId>
<version>${asciidoctorj.version}</version>
</dependency>
</dependencies>
...
</plugin>
</plugins>
Expand Down

0 comments on commit b749e3c

Please sign in to comment.