Java 5 annotations to use in Mojos
To be able to use Maven Plugin Tools Java 5 Annotations, add this artifact to your project dependencies in pom.xml:
<project>
<dependencies>
<dependency>
<groupId>org.apache.maven.plugin-tools</groupId>
<artifactId>maven-plugin-annotations</artifactId>
<version>3.3</version>
<scope>provided</scope>
</dependency>
</dependencies>
</project>