Tomcat がサービスとしてインストールされているリモート マシンへの展開に問題があります。私の tomcat-users は次のとおりです。
<tomcat-users>
<role rolename="manager"/>
<user username="admin" password="admin" roles="tomcat, admin, manager-gui, manager-script"/>
</tomcat-users>
私のsettings.xmlは次のとおりです。
<settings>
<pluginGroups>
<pluginGroup>org.apache.tomcat.maven</pluginGroup>
</pluginGroups>
<servers>
<server>
<id>tomcat7</id>
<username>admin</username>
<password>admin</password>
</server>
</servers>
</settings>
そして、私の pom.xml には次のものがあります。
<plugin>
<groupId>org.apache.tomcat.maven</groupId>
<artifactId>tomcat7-maven-plugin</artifactId>
<configuration>
<server>tomcat7</server>
<url>http://localhost:8081/manager/text</url>
<warFile>target/editor-${project.version}.war</warFile>
</configuration>
そして、Maven コンソールの出力で 401 Unauthorized を取得し続けます。私が間違っていることを教えてもらえますか?