You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@openmeetings.apache.org by so...@apache.org on 2022/04/13 08:05:42 UTC

[openmeetings] branch master updated: no jira: TLD scanner is turned OFF

This is an automated email from the ASF dual-hosted git repository.

solomax pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/openmeetings.git


The following commit(s) were added to refs/heads/master by this push:
     new 48651ea93 no jira: TLD scanner is turned OFF
48651ea93 is described below

commit 48651ea93f8ee0daad93a5e5940dd267e4dc8be1
Author: Maxim Solodovnik <so...@gmail.com>
AuthorDate: Wed Apr 13 15:05:31 2022 +0700

    no jira: TLD scanner is turned OFF
---
 .../src/main/assembly/components/all.xml           |  1 +
 .../src/main/assembly/conf/context.xml             | 34 ++++++++++++++++++++++
 2 files changed, 35 insertions(+)

diff --git a/openmeetings-server/src/main/assembly/components/all.xml b/openmeetings-server/src/main/assembly/components/all.xml
index 3dfbf3297..b9edc04f2 100644
--- a/openmeetings-server/src/main/assembly/components/all.xml
+++ b/openmeetings-server/src/main/assembly/components/all.xml
@@ -25,6 +25,7 @@
 			<outputDirectory></outputDirectory>
 			<excludes>
 				<exclude>bin/*.sh</exclude>
+				<exclude>conf/context.xml</exclude>
 				<exclude>conf/server.xml</exclude>
 				<exclude>conf/web.xml</exclude>
 				<exclude>conf/tomcat-users*</exclude>
diff --git a/openmeetings-server/src/main/assembly/conf/context.xml b/openmeetings-server/src/main/assembly/conf/context.xml
new file mode 100644
index 000000000..cf13d0732
--- /dev/null
+++ b/openmeetings-server/src/main/assembly/conf/context.xml
@@ -0,0 +1,34 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+  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.
+-->
+<!-- The contents of this file will be loaded for each web application -->
+<Context>
+
+    <!-- Default set of monitored resources. If one of these changes, the    -->
+    <!-- web application will be reloaded.                                   -->
+    <WatchedResource>WEB-INF/web.xml</WatchedResource>
+    <WatchedResource>WEB-INF/tomcat-web.xml</WatchedResource>
+    <WatchedResource>${catalina.base}/conf/web.xml</WatchedResource>
+
+    <!-- Uncomment this to disable session persistence across Tomcat restarts -->
+    <!--
+    <Manager pathname="" />
+    -->
+    <JarScanner>
+        <JarScanFilter tldSkip="*"/>
+    </JarScanner>
+</Context>