asciidoctor / asciidoclet

:clipboard: A Javadoc Doclet based on Asciidoctor that lets you write Javadoc in the AsciiDoc syntax.
https://github.com/asciidoctor/asciidoclet
Apache License 2.0
132 stars 40 forks source link

Add Integration tests (aka. with `maven-invoker-plugin`) to test Java 17 and 21 #126

Closed abelsromero closed 2 months ago

abelsromero commented 3 months ago

Current IT only covers Java 11.

Given each one needs different opens configurations, we could have different tests that run depending on a profile activated by the java version.

<profile>
    <activation>
        <jdk>17</jdk>
    </activation>
</profile>