libyear-maven-plugin icon indicating copy to clipboard operation
libyear-maven-plugin copied to clipboard

Plugin dogfooding

Open mfoo opened this issue 2 years ago • 1 comments

I previously had the following in pom.xml:

<plugin>
    <groupId>${project.groupId}</groupId>
    <artifactId>${project.artifactId}</artifactId>
    <version>${project.version}</version>
    <executions>
        <execution>
            <id>libyear-report</id>
            <goals>
                <goal>analyze</goal>
            </goals>
            <phase>install</phase>
        </execution>
    </executions>
</plugin>

The idea was to execute the current version of the plugin when running mvn install (perhaps it should be verify, and perhaps this is the solution). This caused problems when building the project on a new machine (but somehow not on CI) where the project didn't exist and so couldn't be executed.

I've temporarily removed this execution from the POM, and this ticket is to look at reintroducing it.

mfoo avatar Jan 29 '23 09:01 mfoo