2022-02-28 15:20:38 +03:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<!--
|
|
|
|
~~~~~~licensing~~~~~~
|
|
|
|
entaxy-management-plugin
|
|
|
|
==========
|
2023-08-03 04:44:09 +03:00
|
|
|
Copyright (C) 2020 - 2023 EmDev LLC
|
2022-02-28 15:20:38 +03:00
|
|
|
==========
|
|
|
|
Licensed 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.
|
|
|
|
~~~~~~/licensing~~~~~~
|
|
|
|
-->
|
|
|
|
|
|
|
|
|
|
|
|
<web-app xmlns="http://java.sun.com/xml/ns/j2ee"
|
|
|
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
|
|
xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee
|
|
|
|
http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd"
|
|
|
|
version="2.4">
|
|
|
|
|
|
|
|
<description>Entaxy HawtIO management plugin</description>
|
|
|
|
<display-name>entaxy hawt.io management plugin</display-name>
|
|
|
|
|
|
|
|
<context-param>
|
|
|
|
<description>Plugin's path on the server</description>
|
|
|
|
<param-name>plugin-context</param-name>
|
|
|
|
<param-value>${plugin-context}</param-value>
|
|
|
|
</context-param>
|
|
|
|
|
|
|
|
<context-param>
|
|
|
|
<description>Plugin's path on the server</description>
|
|
|
|
<param-name>plugin-name</param-name>
|
|
|
|
<param-value>${plugin-name}</param-value>
|
|
|
|
</context-param>
|
|
|
|
|
|
|
|
<context-param>
|
|
|
|
<description>Plugin's path on the server</description>
|
|
|
|
<param-name>plugin-domain</param-name>
|
|
|
|
<param-value>${plugin-domain}</param-value>
|
|
|
|
</context-param>
|
|
|
|
|
|
|
|
<context-param>
|
|
|
|
<description>Plugin's path on the server</description>
|
|
|
|
<param-name>plugin-scripts</param-name>
|
|
|
|
<param-value>${plugin-scripts}</param-value>
|
|
|
|
</context-param>
|
|
|
|
|
|
|
|
<context-param>
|
|
|
|
<description>Disable listing of directories and files</description>
|
|
|
|
<param-name>org.eclipse.jetty.servlet.Default.dirAllowed</param-name>
|
|
|
|
<param-value>false</param-value>
|
|
|
|
</context-param>
|
|
|
|
|
|
|
|
<listener>
|
|
|
|
<listener-class>ru.entaxy.ui.hawtio.management.PluginContextListener</listener-class>
|
|
|
|
</listener>
|
|
|
|
|
|
|
|
|
|
|
|
</web-app>
|
|
|
|
|