Write custom maven plugin

Here are some notes, about hot to write custom maven plugin Download

pom.xml

naming convention

NOTE

All uses should use $yourName-maven-plugin convention for their plugins

packaging

    <packaging>maven-plugin</packaging>
1

dependencies

Custom plugin project pom.xml file should contains next required dependencies:

<dependencies>
    
</dependencies>
1
2
3
Last Updated: 9/24/2019, 1:53:12 AM