Skip to content

Commit

Permalink
no jira: crossdomain.xml is updated to have 'deny-all' policy
Browse files Browse the repository at this point in the history
  • Loading branch information
solomax committed Jun 19, 2017
1 parent f51be9b commit 5889b5b
Show file tree
Hide file tree
Showing 3 changed files with 32 additions and 0 deletions.
10 changes: 10 additions & 0 deletions openmeetings-server/src/main/assembly/components/all.xml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@
<exclude>webapps/chat/**</exclude>
<exclude>webapps/root/demos/**</exclude>
<exclude>webapps/root/index.html</exclude>
<exclude>webapps/root/crossdomain.xml</exclude>
<exclude>lib/commons-io*.jar</exclude>
<exclude>plugins/websocket*.jar</exclude>
<exclude>*.sh</exclude>
Expand Down Expand Up @@ -95,6 +96,7 @@
<outputDirectory>${om.webapp}</outputDirectory>
<excludes>
<exclude>META-INF/**</exclude>
<exclude>WEB-INF/classes/META-INF/**</exclude>
<exclude>WEB-INF/lib/asm*</exclude>
<exclude>WEB-INF/lib/aopalliance*</exclude>
<exclude>WEB-INF/lib/cglib-nodep*</exclude>
Expand All @@ -111,6 +113,14 @@
<exclude>WEB-INF/lib/jcl-over-slf4j*</exclude>
</excludes>
</fileSet>
<fileSet>
<directory>${project.parent.basedir}/openmeetings-web/target/openmeetings-web-${project.version}</directory><!-- FIXME should be implemented differently -->
<outputDirectory>${om.webapp}</outputDirectory>
<filtered>true</filtered>
<includes>
<include>WEB-INF/classes/META-INF/**</include>
</includes>
</fileSet>
<fileSet>
<directory>${project.parent.basedir}/openmeetings-web/target/openmeetings-web-${project.version}/WEB-INF/lib</directory><!-- FIXME should be implemented differently -->
<outputDirectory>lib</outputDirectory>
Expand Down
2 changes: 2 additions & 0 deletions openmeetings-server/src/main/assembly/quick.xml
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@
</includes>
<excludes>
<exclude>WEB-INF/web.xml</exclude>
<exclude>WEB-INF/classes/META-INF/*</exclude>
</excludes>
</fileSet>
<fileSet>
Expand All @@ -44,6 +45,7 @@
<filtered>true</filtered>
<includes>
<include>WEB-INF/web.xml</include>
<include>WEB-INF/classes/META-INF/*</include>
</includes>
</fileSet>
<fileSet>
Expand Down
20 changes: 20 additions & 0 deletions openmeetings-server/src/main/assembly/root/crossdomain.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
<?xml version="1.0"?>
<!--
Licensed to the Apache Software Foundation (ASF) under one or more
contributor license agreements. See the NOTICE file distributed with
this work for additional information regarding copyright ownership.
The ASF licenses this file to You under the Apache License, Version 2.0
(the "License"); you may not use this file except in compliance with
the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->
<!DOCTYPE cross-domain-policy SYSTEM "http://www.macromedia.com/xml/dtds/cross-domain-policy.dtd">
<cross-domain-policy>
</cross-domain-policy>

0 comments on commit 5889b5b

Please sign in to comment.