我有 3 个模块(ModuleA、ModuleB、ModuleC)。我将 ModuleC 提取为一个独立的 jar(其中包含 db 脚本)。
在 pom.xml 我试图做类似下面的事情,
<project ...>
......
<modules>
<module>ModuleA</module>
<module>ModuleB</module>
</modules>
....
</project>
如何在反应器中包含该 JAR 模块(ModuleC),以便它像普通模块一样构建。如果我将它添加为依赖项,那么在配置文件调用期间如何执行其中的脚本?
除了上述之外,我还有如下所示的配置文件,
<profile>
<id>runScript</id>
<modules>
<module>parent/child/ModuleA</module>
<module>parent/child/ModuleB</module>
</modules>
</profile>
我需要将 ModuleC (JAR) 添加到此配置文件中。以便在调用配置文件时执行它。
请问有什么想法吗?