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
|
|
|
==========
|
2023-08-11 03:05:45 +03:00
|
|
|
You may not use this file except in accordance with the License Terms of the Copyright
|
|
|
|
Holder located at: https://entaxy.ru/eula . All copyrights, all intellectual property
|
|
|
|
rights to the Software and any copies are the property of the Copyright Holder. Unless
|
|
|
|
it is explicitly allowed the Copyright Holder, the User is prohibited from using the
|
|
|
|
Software for commercial purposes to provide services to third parties.
|
2022-02-28 15:20:38 +03:00
|
|
|
|
2023-08-11 03:05:45 +03:00
|
|
|
The Copyright Holder hereby declares that the Software is provided on an "AS IS".
|
|
|
|
Under no circumstances does the Copyright Holder guarantee or promise that the
|
|
|
|
Software provided by him will be suitable or not suitable for the specific purposes
|
|
|
|
of the User, that the Software will meet all commercial and personal subjective
|
|
|
|
expectations of the User, that the Software will work properly, without technical
|
|
|
|
errors, quickly and uninterruptedly.
|
2022-02-28 15:20:38 +03:00
|
|
|
|
2023-08-11 03:05:45 +03:00
|
|
|
Under no circumstances shall the Copyright Holder or its Affiliates is not liable
|
|
|
|
to the User for any direct or indirect losses of the User, his expenses or actual
|
|
|
|
damage, including, downtime; loss of bussines; lost profit; lost earnings; loss
|
|
|
|
or damage to data, property, etc.
|
2022-02-28 15:20:38 +03:00
|
|
|
~~~~~~/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>
|
|
|
|
|