У меня есть собственный плагин maven, но когда я использую его в своем проекте pom, он не запускается! Вот как я использую то же самое:
<plugin>
<groupId>com.autodeploy.maven</groupId>
<artifactId>my-docs-plugin</artifactId>
<version>1.0.2-0</version>
<inherited>false</inherited>
<executions>
<execution>
<id>myid</id>
<phase>install</phase>
<goals>
<goal>install</goal>
</goals>
<configuration>
<outputDirectory>target/doc</outputDirectory>
<custom-Folders>
<param>${basedir}/files/</param>
</custom-Folders>
</configuration>
</execution>
</executions>
</plugin>
Я запускаю цикл сборки, например mvn install: install или даже mvn install! Ни один из них не вызывает мой плагин maven!