在通过 WTP 将资源部署到 Tomcat之前,如何让 Eclipse 识别我的使用maven-dependency-plugin
并执行它?
在上一个问题中,我将 Maven 配置为将一些工件复制到war
应用程序中,这样我就可以将它们提供给 Web 客户端。target/${project.artifactId}-${project.version}
通过 Maven 命令行打包时,将它们复制到工作的方法。遗憾的是,在使用 Eclipse 的 Tomcat 集成时没有这样的运气。
Maven插件配置:
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
<version>2.8</version>
<executions>
<execution>
<id>copy</id>
<phase>compile</phase>
<goals>
<goal>copy</goal>
</goals>
<configuration>
<artifactItems>
<artifactItem>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>3.8.1</version>
<type>jar</type>
<overWrite>false</overWrite>
<destFileName>optional-new-name.jar</destFileName>
</artifactItem>
</artifactItems>
<outputDirectory>${project.build.directory}/${project.artifactId}-${project.version}/</outputDirectory>
<overWriteReleases>false</overWriteReleases>
<overWriteSnapshots>true</overWriteSnapshots>
</configuration>
</execution>
</executions>