Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
O
Openfire
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
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
Administrator
Openfire
Commits
06876d60
Commit
06876d60
authored
Oct 22, 2015
by
Guus der Kinderen
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #324 from guusdk/OF-930
OF-930: Overlay should allow for WEB-INF overrides.
parents
8a003ae9
2c74b64e
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
19 additions
and
12 deletions
+19
-12
build.xml
build/build.xml
+19
-12
No files found.
build/build.xml
View file @
06876d60
...
...
@@ -606,19 +606,26 @@
</filterset>
</copy>
<!-- Copy over Sitemesh files. -->
<copy
file=
"${web.dir}/WEB-INF/decorators.xml"
toFile=
"${webapp.dest.dir}/WEB-INF/decorators.xml"
overwrite=
"true"
>
</copy>
<copy
file=
"${web.dir}/WEB-INF/sitemesh.xml"
toFile=
"${webapp.dest.dir}/WEB-INF/sitemesh.xml"
overwrite=
"true"
>
<!-- Copy over other WEB-INF files. -->
<copy
todir=
"${webapp.dest.dir}/WEB-INF"
overwrite=
"true"
>
<fileset
dir=
"${web.dir}/WEB-INF"
>
<include
name=
"**/*"
/>
<exclude
name=
"web.xml"
/>
</fileset>
</copy>
<copy
file=
"${web.dir}/WEB-INF/dwr.xml"
toFile=
"${webapp.dest.dir}/WEB-INF/dwr.xml"
overwrite=
"true"
>
<!-- When there are WEB-INF overlay files, use those. -->
<if>
<equals
arg1=
"${overlay.web.dir.found}"
arg2=
"true"
/>
<then>
<copy
todir=
"${webapp.dest.dir}/WEB-INF"
overwrite=
"true"
>
<fileset
dir=
"${overlay.web.dir}/WEB-INF"
>
<include
name=
"**/*"
/>
<exclude
name=
"web.xml"
/>
</fileset>
</copy>
</then>
</if>
<!-- Create a jar of compiled servlets -->
<jar
jarfile=
"${jspc.dest.dir}/${jspc.jar.name}"
>
...
...
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