5
5

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

Maven tomcat-maven-plugin を使うための設定例

Last updated at Posted at 2012-12-26

なぜかcodehausのUsage通りに書いても上手く行かなかったのでメモ。

まずpom.xmlの設定。

pom.xml
<project>
...
    <build>
    ...
        <plugins>
            ...
            <plugin>
                <groupId>org.codehaus.mojo</groupId>
                <artifactId>tomcat-maven-plugin</artifactId>
                <!-- 1.0までしか使えないっぽい。 -->
                <version>1.0-SNAPSHOT</version>
                <configuration>
                    <!-- ここはプロジェクトに合わせて適宜変更する。 -->
                    <server>tomcat</server>
                    <url>http://localhost:8080/manager</url>
                    <path>/</path>
                </configuration>
            </plugin>
        </plugins>
    </build>
    <pluginRepositories>
        ...
        <pluginRepository>
            <id>Codehaus Snapshots</id>
            <url>http://snapshots.repository.codehaus.org/</url>
            <snapshots>
                <enabled>true</enabled>
            </snapshots>
            <releases>
                <enabled>true</enabled>
            </releases>
        </pluginRepository>
    </pluginRepositories>
</project>

$M2_HOME/settings.xmlの設定。

settings.xml
<settings>
    ...
    <servers>
        ...
        <server>
            <id>tomcat</id>
            <!-- Tomcatのtomcat-users.xmlに書いたusername, password を入れる。 -->
            <username>username</username>
            <password>password</password>
        </server>
    </servers>
</settings>
5
5
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
5
5

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?