Remove war packaging from Jersey sample

This also removes the need for the tomcat starter to be in provided
scope.

Closes gh-18346
This commit is contained in:
Madhura Bhave 2019-09-25 09:28:26 -07:00
parent 56623bd57b
commit 401a6b586e
1 changed files with 0 additions and 3 deletions

View File

@ -9,7 +9,6 @@
<version>${revision}</version> <version>${revision}</version>
</parent> </parent>
<artifactId>spring-boot-sample-jersey</artifactId> <artifactId>spring-boot-sample-jersey</artifactId>
<packaging>war</packaging>
<name>Spring Boot Jersey Sample</name> <name>Spring Boot Jersey Sample</name>
<description>Spring Boot Jersey Sample</description> <description>Spring Boot Jersey Sample</description>
<properties> <properties>
@ -25,11 +24,9 @@
<groupId>org.springframework.boot</groupId> <groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-actuator</artifactId> <artifactId>spring-boot-starter-actuator</artifactId>
</dependency> </dependency>
<!-- Provided -->
<dependency> <dependency>
<groupId>org.springframework.boot</groupId> <groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-tomcat</artifactId> <artifactId>spring-boot-starter-tomcat</artifactId>
<scope>provided</scope>
</dependency> </dependency>
<!-- Test --> <!-- Test -->
<dependency> <dependency>