これは私のpom.xml
ビルド構成です:
<build>
<finalName>cfwd</finalName>
<pluginManagement>
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.3.2</version>
<configuration>
<source>1.6</source>
<target>1.6</target>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.tomcat.maven</groupId>
<artifactId>tomcat7-maven-plugin</artifactId>
<version>2.0</version>
<configuration>
<url>http://xx.xxx.xxx.xxx:8080/manager/text</url>
<server>cifServer</server>
<path>/cfwd</path>
<addContextWarDependencies>true</addContextWarDependencies>
<addWarDependenciesInClassloader>true</addWarDependenciesInClassloader>
</configuration>
</plugin>
</plugins>
</pluginManagement>
</build>
http://xx.xxx.xxx.xxx:8080
リモートサーバーのIPはどこですか。
経由でデプロイしようとすると、次のmvn tomcat:deploy
エラーが発生します。
[エラー]プロジェクトcfwdでゴールorg.codehaus.mojo:tomcat-maven-plugin:1.1:deploy(default-cli)を実行できませんでした:Tomcatマネージャーを呼び出せません:サーバーがHTTP応答コードを返しました:URLの403:
http://localhost:8080/manager/deploy?path=%2Fcfwd&war=
->[ヘルプ1] org.apache.maven.lifecycle.LifecycleExecutionException:プロジェクトcfwdでゴールorg.codehaus.mojo:tomcat-maven-plugin:1.1:deploy(default-cli)を実行できませんでした:Tomcatマネージャーを呼び出せません
localhost:8080
mavenがリモートサーバーIPではなくにデプロイしようとしているように見える場所。何か案が?