Skip to content
This repository has been archived by the owner on Feb 5, 2022. It is now read-only.

use "tomcat7-maven-plugin" instead of "tomcat-maven-plugin" #17

Merged
merged 1 commit into from Jan 7, 2013
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -31,7 +31,7 @@ To run the application:
From the command line with Maven:

$ cd spring-mvc-showcase
$ mvn tomcat:run
$ mvn tomcat7:run

or

Expand Down
6 changes: 3 additions & 3 deletions pom.xml
Expand Up @@ -274,9 +274,9 @@
</configuration>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>tomcat-maven-plugin</artifactId>
<version>1.1</version>
<groupId>org.apache.tomcat.maven</groupId>
<artifactId>tomcat7-maven-plugin</artifactId>
<version>2.0</version>
</plugin>
</plugins>
</build>
Expand Down