WrenSecurity / wrensec-parent

Parent POM for Maven based Wren Security projects.
http://wrensecurity.org
0 stars 7 forks source link

Add Plugin Management Definition for Clirr #18

Open Kortanul opened 6 years ago

Kortanul commented 6 years ago

Right now, wrensec-parent defines a property for the version of Clirr in use, but doesn't actually use this property itself. Clirr needs to be added to <pluginManagement>, like so:

            <plugins>
                <plugin>
                    <groupId>org.codehaus.mojo</groupId>
                    <artifactId>clirr-maven-plugin</artifactId>
                    <version>${clirrPluginVersion}</version>
                </plugin>
            </plugins>

As of https://github.com/WrenSecurity/wrensec-commons/pull/12, Commons BOM will be compensating for this oversight until it can be addressed in the next Parent release.