maven-dependency-plugin
의 사용을 Eclipse가 인식하도록하고 을 실행하여을 WTP를 통해 Tomcat에 배포하기 전에 어떻게해야합니까?이클립스 Respect Maven-Dependency-Plugin
a previous question에서 일부 아티팩트를 war
응용 프로그램에 복사하도록 Maven을 구성 했으므로 웹 클라이언트에 제공 할 수있었습니다. 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>
감사합니다. 자세한 내용과 유망 해 보입니다. 나는 그것을 시험해 볼 기회가 있었을 때 알려주지! –