Riduidel / aadarchi

A maven archetype to generate easily projects allowing architecture description using a mix of C4, agile architecture, Asciidoc and PlantUML
https://riduidel.github.io/aadarchi/
Apache License 2.0
41 stars 12 forks source link

When using archetype, the aadarchi-maven-plugin sometimes use project.groupId #219

Closed Riduidel closed 2 years ago

Riduidel commented 2 years ago

I created an example project from archetype, and got

        <profile>
            <id>generate-docs</id>
            <activation>
                <file>
                    <exists>src/docs/asciidoc</exists>
                </file>
            </activation>
            <build>
                <defaultGoal>package</defaultGoal>
                <plugins>
                    <plugin>
                        <groupId>${project.groupId}</groupId>
                        <artifactId>aadarchi-maven-plugin</artifactId>
                        <version>${project.version}</version>

Which is obviously not good