I've created a maven plugin to start, clean and stop a database. My project exists of a pom file with 4 modules:
<modules>
<module>infrastructure</module>
<module>domain</module>
<module>application</module>
<module>presentation</module>
</modules>
The plugin is only specified in this pom, and not in the pom of the modules. When I go to cmd, and I want to start a database with:
mvn hsqldb:startdb
He wants to create a database for every pom file. So actually he starts 5 databases (one for the main pom, and for each module another one), but I only want one (from the main pom). In my main pomfile, the plugin is declared like this:
<plugin>
<groupId>sample.plugin</groupId>
<artifactId>hsqldb-maven-plugin</artifactId>
<version>1.0-SNAPSHOT</version>
<inherited>false</inherited>
<dependencies>
<dependency>
...
</dependency>
</dependencies>
<executions>
...
</executions>
<configuration>
...
</configuration>
</plugin>
Any solutions for my problem?
Kind regards,
Walle