Skip to content

Commit

Permalink
Added tomcat7-maven-plugin and plugin repository
Browse files Browse the repository at this point in the history
  • Loading branch information
Jesper Joergensen committed Jan 31, 2012
1 parent f280621 commit 5016dab
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions pom.xml
Expand Up @@ -32,6 +32,17 @@
</repository>
</repositories>
<pluginRepositories>
<pluginRepository>
<id>apache.snapshots</id>
<name>Apache Snapshots</name>
<url>https://repository.apache.org/content/groups/snapshots-group/</url>
<releases>
<enabled>false</enabled>
</releases>
<snapshots>
<enabled>true</enabled>
</snapshots>
</pluginRepository>
<pluginRepository>
<id>spring-maven-release</id>
<name>Spring Maven Release Repository</name>
Expand Down Expand Up @@ -457,6 +468,23 @@
</dependency>
</dependencies>
</plugin>
<plugin>
<groupId>org.apache.tomcat.maven</groupId>
<artifactId>tomcat7-maven-plugin</artifactId>
<version>2.0-SNAPSHOT</version>
<executions>
<execution>
<id>tomcat-run</id>
<goals>
<goal>exec-war-only</goal>
</goals>
<phase>package</phase>
<configuration>
<path>/</path>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>

0 comments on commit 5016dab

Please sign in to comment.