Browse Source

Merge branch '1.1.x'

pull/1824/merge
Phillip Webb 11 years ago
parent
commit
3abd0e1956
  1. 3
      spring-boot-integration-tests/src/test/java/org/springframework/boot/gradle/WarPackagingTests.java
  2. 4
      spring-boot-starters/spring-boot-starter-tomcat/pom.xml
  3. 4
      spring-boot-starters/spring-boot-starter-websocket/pom.xml

3
spring-boot-integration-tests/src/test/java/org/springframework/boot/gradle/WarPackagingTests.java

@ -48,7 +48,8 @@ public class WarPackagingTests { @@ -48,7 +48,8 @@ public class WarPackagingTests {
private static final Set<String> TOMCAT_EXPECTED_IN_WEB_INF_LIB_PROVIDED = new HashSet<String>(
Arrays.asList("spring-boot-starter-tomcat-", "tomcat-embed-core-",
"tomcat-embed-el-", "tomcat-embed-logging-juli-"));
"tomcat-embed-el-", "tomcat-embed-logging-juli-",
"tomcat-embed-websocket-"));
private static final Set<String> JETTY_EXPECTED_IN_WEB_INF_LIB_PROVIDED = new HashSet<String>(
Arrays.asList("spring-boot-starter-jetty-", "jetty-util-", "jetty-xml-",

4
spring-boot-starters/spring-boot-starter-tomcat/pom.xml

@ -30,5 +30,9 @@ @@ -30,5 +30,9 @@
<groupId>org.apache.tomcat.embed</groupId>
<artifactId>tomcat-embed-logging-juli</artifactId>
</dependency>
<dependency>
<groupId>org.apache.tomcat.embed</groupId>
<artifactId>tomcat-embed-websocket</artifactId>
</dependency>
</dependencies>
</project>

4
spring-boot-starters/spring-boot-starter-websocket/pom.xml

@ -44,9 +44,5 @@ @@ -44,9 +44,5 @@
<groupId>org.springframework</groupId>
<artifactId>spring-websocket</artifactId>
</dependency>
<dependency>
<groupId>org.apache.tomcat.embed</groupId>
<artifactId>tomcat-embed-websocket</artifactId>
</dependency>
</dependencies>
</project>

Loading…
Cancel
Save