Make example actually work

This commit is contained in:
Artur 2022-01-19 14:22:24 +02:00 committed by GitHub
parent b262006bf0
commit 56d88ddb5e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 5 additions and 3 deletions

View File

@ -986,9 +986,11 @@ Here is a configuration example:
<configuration> <configuration>
<webApp> <webApp>
<contextPath>/${build.finalName}</contextPath> <contextPath>/${build.finalName}</contextPath>
<baseResource implementation="org.eclipse.jetty.util.resource.ResourceCollection"> <resourceBases>
<resources>src/main/webapp,/home/johndoe/path/to/my/other/source,/yet/another/folder</resources> <resourceBase>src/main/webapp</resourceBase>
</baseResource> <resourceBase>/home/johndoe/path/to/my/other/source</resourceBase>
<resourceBase>/yet/another/folder</resourceBase>
</resourceBases>
</webApp> </webApp>
</configuration> </configuration>
---- ----