osundblad / intellij-annotations-instrumenter-maven-plugin

IntelliJ IDEA annotations instrumenter maven plugin
Other
38 stars 11 forks source link

Default execution configuration #10

Open osundblad opened 7 years ago

osundblad commented 7 years ago

This should be default:

<executions>
      <execution>
           <id>instrument</id>
           <goals>
                <!--suppress MavenModelInspection -->
                <goal>instrument</goal>
                <!--suppress MavenModelInspection -->
                <goal>tests-instrument</goal>
           </goals>
      </execution>
</executions>
osundblad commented 7 years ago

This seems to be harder than I thought. If I understood the documentation of Mojo it is not possible by design.

So if someone knows how to do it please let me know!

Until I have fixed all other issues this will be on hold.