使用货物插件进行多次战争

时间:2018-09-18 22:29:10

标签: java maven tomcat build cargo-maven2-plugin

我在根POM.xml中使用了这样的配置

db.create_collection("myColl",validator=vexpr)

但这会导致

  

工件[com.x:store:war]不是项目的依赖项。 -> [帮助1]

我什至试图将其包含在此POM.xml中

<configuration>
    <deployables>
        <deployable>
            <artifactId>store</artifactId>
            <groupId>com.x</groupId>
            <type>war</type>
            <properties>
                <context>store</context>
            </properties>
        </deployable>
        <deployable>
            <artifactId>admin</artifactId>
            <groupId>com.y</groupId>
            <type>war</type>
            <properties>
                <context>admin</context>
            </properties>
        </deployable>
    </deployables>
</configuration>

如何解决此问题?

0 个答案:

没有答案