Hi, I have my custom plugin.
And I wanna to run it on a project.
So I add it at build->plugins
<plugin>
<artifactId>maven-source-plugin</artifactId>
<executions>
<execution>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
Now my question, is there any simpler way to do that?
May be like this:
<plugin>
<artifactId>maven-source-plugin</artifactId>
<goal>jar</goal>
</plugin>
VELO
