Skip to content

Commit e01bcbb

Browse files
committed
Merge pull request #16946 from phillipuniverse
* pr/16946: Use a regex that captures numbers and qualifiers
2 parents af1720a + 2149ba4 commit e01bcbb

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

spring-boot-project/spring-boot-docs/src/main/asciidoc/using-spring-boot.adoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -974,8 +974,8 @@ pattern that is applied to the classpath, as shown in the following example:
974974

975975
[source,properties,indent=0]
976976
----
977-
restart.exclude.companycommonlibs=/mycorp-common-[\\w-]+\.jar
978-
restart.include.projectcommon=/mycorp-myproj-[\\w-]+\.jar
977+
restart.exclude.companycommonlibs=/mycorp-common-[\\w\\d-\.]+\.jar
978+
restart.include.projectcommon=/mycorp-myproj-[\\w\\d-\.]+\.jar
979979
----
980980

981981
NOTE: All property keys must be unique. As long as a property starts with

0 commit comments

Comments
 (0)