Merge branch '1.5.x'

This commit is contained in:
Stephane Nicoll
2017-02-08 15:01:28 +01:00
3 changed files with 7 additions and 6 deletions

View File

@@ -250,11 +250,6 @@
<artifactId>spring-boot-test-autoconfigure</artifactId>
<version>2.0.0.BUILD-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-test-support</artifactId>
<version>2.0.0.BUILD-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-actuator</artifactId>

View File

@@ -41,6 +41,12 @@
</ciManagement>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-test-support</artifactId>
<version>1.5.2.BUILD-SNAPSHOT</version>
</dependency>
<!-- Additional Dependencies the consumers of spring-boot-dependencies
will generally not need -->
<dependency> <!-- deprecated but recent version required by 3rd party libs -->

View File

@@ -40,7 +40,7 @@ class SkipPatternJarScanner extends StandardJarScanner {
SkipPatternJarScanner(JarScanner jarScanner, Set<String> patterns) {
Assert.notNull(jarScanner, "JarScanner must not be null");
Assert.notNull(jarScanner, "Patterns must not be null");
Assert.notNull(patterns, "Patterns must not be null");
this.jarScanner = jarScanner;
StandardJarScanFilter filter = new StandardJarScanFilter();
filter.setTldSkip(StringUtils.collectionToCommaDelimitedString(patterns));