Java プロジェクトで Maven を使用しており、WAR をローカルホストの Tomcat にデプロイしたいと考えています。
pom.xml
ファイルに次の行があります。
<properties>
<tomcat.target>C:\Directory</tomcat.target>
</properties>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-war-plugin</artifactId>
<version>2.3</version>
<configuration>
<webappDirectory>${tomcat.target}</webappDirectory>
</configuration>
</plugin>
</plugins>
</build>
出力ログは次のとおりです。
[INFO] --- maven-install-plugin:2.3.1:install (default-install) ---
[INFO] Installing C:\Directory\name.war to C:\Directory\name.war
[INFO] Installing C:\Directory\pom.xml to C:\Directory\name.pom
ご覧のとおり、次の行を構成したいと思います。
C:\ディレクトリ\name.warに
Tomcat の /webapps フォルダを参照する方法は?