Commit 5f05e979 authored by Stephane Nicoll's avatar Stephane Nicoll

Merge branch '1.5.x'

parents ba05f401 da8362a2
...@@ -250,11 +250,6 @@ ...@@ -250,11 +250,6 @@
<artifactId>spring-boot-test-autoconfigure</artifactId> <artifactId>spring-boot-test-autoconfigure</artifactId>
<version>2.0.0.BUILD-SNAPSHOT</version> <version>2.0.0.BUILD-SNAPSHOT</version>
</dependency> </dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-test-support</artifactId>
<version>2.0.0.BUILD-SNAPSHOT</version>
</dependency>
<dependency> <dependency>
<groupId>org.springframework.boot</groupId> <groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-actuator</artifactId> <artifactId>spring-boot-actuator</artifactId>
......
...@@ -41,6 +41,12 @@ ...@@ -41,6 +41,12 @@
</ciManagement> </ciManagement>
<dependencyManagement> <dependencyManagement>
<dependencies> <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 <!-- Additional Dependencies the consumers of spring-boot-dependencies
will generally not need --> will generally not need -->
<dependency> <!-- deprecated but recent version required by 3rd party libs --> <dependency> <!-- deprecated but recent version required by 3rd party libs -->
......
...@@ -40,7 +40,7 @@ class SkipPatternJarScanner extends StandardJarScanner { ...@@ -40,7 +40,7 @@ class SkipPatternJarScanner extends StandardJarScanner {
SkipPatternJarScanner(JarScanner jarScanner, Set<String> patterns) { SkipPatternJarScanner(JarScanner jarScanner, Set<String> patterns) {
Assert.notNull(jarScanner, "JarScanner must not be null"); 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; this.jarScanner = jarScanner;
StandardJarScanFilter filter = new StandardJarScanFilter(); StandardJarScanFilter filter = new StandardJarScanFilter();
filter.setTldSkip(StringUtils.collectionToCommaDelimitedString(patterns)); filter.setTldSkip(StringUtils.collectionToCommaDelimitedString(patterns));
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment