Use a regex that captures numbers and qualifiers
Fix the regular expression used in the devtools documentation to include a version number pattern. Closes gh-16946
This commit is contained in:
parent
af1720aa2e
commit
2149ba4051
|
|
@ -974,8 +974,8 @@ pattern that is applied to the classpath, as shown in the following example:
|
||||||
|
|
||||||
[source,properties,indent=0]
|
[source,properties,indent=0]
|
||||||
----
|
----
|
||||||
restart.exclude.companycommonlibs=/mycorp-common-[\\w-]+\.jar
|
restart.exclude.companycommonlibs=/mycorp-common-[\\w\\d-\.]+\.jar
|
||||||
restart.include.projectcommon=/mycorp-myproj-[\\w-]+\.jar
|
restart.include.projectcommon=/mycorp-myproj-[\\w\\d-\.]+\.jar
|
||||||
----
|
----
|
||||||
|
|
||||||
NOTE: All property keys must be unique. As long as a property starts with
|
NOTE: All property keys must be unique. As long as a property starts with
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue