我有以下情况:
- 我有一个 WEB 应用程序 - 我们称之为MyWebApp
- 它基于一些不属于我的覆盖 - 我们称之为模板
- 我想在我自己的代码树中创建一个覆盖层的包装 - 让我们称之为my-template
当我将MyWebApp基于模板时- WTP 工作正常并且我的wtpwebapps
目录按预期创建。当我将MyWebApp基于我的模板时- WTP 根本不会复制覆盖。
当我跑步时mvn install
——我得到的战争在两种情况下都是相同的。目录略有不同META-INF/maven
- 在我的版本中,我看不到
一个重要的注意事项 - 当我将模板的依赖项添加回我的项目时 - 但让覆盖层来自my-template - 它工作正常 - 所以看起来问题出pom.xml
在my-template中。
我在用着:
- Maven 2.2.1
- 日食 - STS - 2.9.2
- 重量级 1.5
只有在打开我的模板项目时才会出现问题- 当我关闭它时,一切正常。
我还可以在.settings\org.eclipse.wst.common.component
配置文件中看到它的变化:
<dependent-module deploy-path="/" handle="module:/overlay/prj/my-template?unpackFolder=target/m2e-wtp/overlays&includes=**/**&excludes=META-INF/MANIFEST.MF">
<dependency-type>consumes</dependency-type>
</dependent-module>
至:
<dependent-module deploy-path="/" handle="module:/overlay/var/M2_REPO/com/mygroup/my-template/1.0-SNAPSHOT/my-template-1.0-SNAPSHOT.war?unpackFolder=target/m2e-wtp/overlays&includes=**/**&excludes=META-INF/MANIFEST.MF">
<dependency-type>consumes</dependency-type>
</dependent-module>
下面是pom.xml
我的模板项目:
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>com.mygroup</groupId>
<artifactId>parent</artifactId>
<version>1.0-SNAPSHOT</version>
</parent>
<artifactId>my-template</artifactId>
<version>16.0-SNAPSHOT</version>
<packaging>war</packaging>
<dependencies>
<dependency>
<groupId>template.group</groupId>
<artifactId>template</artifactId>
<type>war</type>
<version>1.0-SNAPSHOT</version>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-war-plugin</artifactId>
<configuration>
<overlays>
<overlay>
<groupId>template.group</groupId>
<artifactId>template</artifactId>
</overlay>
</overlays>
</configuration>
</plugin>
</plugins>
</build>
</project>
我的问题 - 我的配置有什么问题吗?或者是否有我可以更改的WTP配置?