Switch jetty & tomcat samples to use starter POMs

This commit is contained in:
Phillip Webb 2013-07-18 17:03:11 -07:00
parent 1eca022073
commit a885afb818
2 changed files with 6 additions and 19 deletions

View File

@ -23,19 +23,9 @@
<artifactId>spring-webmvc</artifactId>
</dependency>
<dependency>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-webapp</artifactId>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-util</artifactId>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>javax.servlet-api</artifactId>
<scope>runtime</scope>
<groupId>${project.groupId}</groupId>
<artifactId>spring-starter-jetty</artifactId>
<version>${project.version}</version>
</dependency>
</dependencies>
<build>

View File

@ -19,12 +19,9 @@
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.apache.tomcat.embed</groupId>
<artifactId>tomcat-embed-core</artifactId>
</dependency>
<dependency>
<groupId>org.apache.tomcat.embed</groupId>
<artifactId>tomcat-embed-logging-juli</artifactId>
<groupId>${project.groupId}</groupId>
<artifactId>spring-starter-tomcat</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.springframework</groupId>