Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Sign in / Register
Toggle navigation
S
spring-boot
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
DEMO
spring-boot
Commits
5f05e979
Commit
5f05e979
authored
Feb 08, 2017
by
Stephane Nicoll
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch '1.5.x'
parents
ba05f401
da8362a2
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
7 additions
and
6 deletions
+7
-6
pom.xml
spring-boot-dependencies/pom.xml
+0
-5
pom.xml
spring-boot-parent/pom.xml
+6
-0
SkipPatternJarScanner.java
...k/boot/context/embedded/tomcat/SkipPatternJarScanner.java
+1
-1
No files found.
spring-boot-dependencies/pom.xml
View file @
5f05e979
...
@@ -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>
...
...
spring-boot-parent/pom.xml
View file @
5f05e979
...
@@ -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 -->
...
...
spring-boot/src/main/java/org/springframework/boot/context/embedded/tomcat/SkipPatternJarScanner.java
View file @
5f05e979
...
@@ -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
));
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment