Skip to content

Commit cc16402

Browse files
committed
Update war packaging tests to reflect change in Tomcat's dependencies
See gh-10395
1 parent b53f108 commit cc16402

File tree

1 file changed

+3
-3
lines changed
  • spring-boot-integration-tests/spring-boot-gradle-tests/src/test/java/org/springframework/boot/gradle

1 file changed

+3
-3
lines changed

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2012-2016 the original author or authors.
2+
* Copyright 2012-2017 the original author or authors.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -45,8 +45,8 @@ public class WarPackagingTests {
4545
private static final String WEB_INF_LIB_PREFIX = "WEB-INF/lib/";
4646

4747
private static final Set<String> TOMCAT_EXPECTED_IN_WEB_INF_LIB_PROVIDED = new HashSet<String>(
48-
Arrays.asList("spring-boot-starter-tomcat-", "tomcat-embed-core-",
49-
"tomcat-embed-el-", "tomcat-embed-websocket-"));
48+
Arrays.asList("spring-boot-starter-tomcat-", "tomcat-annotations",
49+
"tomcat-embed-core-", "tomcat-embed-el-", "tomcat-embed-websocket-"));
5050

5151
private static final Set<String> JETTY_EXPECTED_IN_WEB_INF_LIB_PROVIDED = new HashSet<String>(
5252
Arrays.asList("spring-boot-starter-jetty-", "jetty-continuation",

0 commit comments

Comments
 (0)