我已经创建了一个maven插件来启动,清理和停止数据库。我的项目包含一个包含4个模块的pom文件:
<modules>
<module>infrastructure</module>
<module>domain</module>
<module>application</module>
<module>presentation</module>
</modules>
插件仅在此pom中指定,而不是在模块的pom中指定。当我转到cmd以使用:
启动数据库时mvn hsqldb:startdb
Maven尝试为每个pom文件创建一个数据库。它实际上启动了5个数据库(一个用于父pom,一个用于每个模块)。但是,我只想要一个(来自父pom)。在我的父pom文件中,插件声明如下:
<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>
我的问题的任何解决方案?
亲切的问候,
WALLE