All Downloads are FREE. Search and download functionalities are using the official Maven repository.

META-INF.web-fragment.xml Maven / Gradle / Ivy

There is a newer version: 1.20.0
Show newest version
<?xml version="1.0" encoding="UTF-8"?>
<!--
semanticcms-core-servlet - Java API for modeling web page content and relationships in a Servlet environment.
Copyright (C) 2016, 2019, 2020, 2021, 2022  AO Industries, Inc.
    [email protected]
    7262 Bull Pen Cir
    Mobile, AL 36695

This file is part of semanticcms-core-servlet.

semanticcms-core-servlet is free software: you can redistribute it and/or modify
it under the terms of the GNU Lesser General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.

semanticcms-core-servlet is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
GNU Lesser General Public License for more details.

You should have received a copy of the GNU Lesser General Public License
along with semanticcms-core-servlet.  If not, see <https://www.gnu.org/licenses/>.
-->
<web-fragment xmlns="http://xmlns.jcp.org/xml/ns/javaee"
  xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee
                      http://xmlns.jcp.org/xml/ns/javaee/web-fragment_3_1.xsd"
  version="3.1"
  metadata-complete="false">
  <name>@{project.groupId}:@{project.artifactId}</name>
  <!-- <display-name>@{project.name} @{project.version}</display-name> -->
  <description>@{project.description}</description>

  <!-- Sets up the cache for the request. -->
  <filter>
    <filter-name>com.semanticcms.core.servlet.CacheFilter</filter-name>
    <filter-class>com.semanticcms.core.servlet.CacheFilter</filter-class>
  </filter>
  <filter-mapping>
    <filter-name>com.semanticcms.core.servlet.CacheFilter</filter-name>
    <url-pattern>/*</url-pattern>
    <dispatcher>REQUEST</dispatcher>
    <dispatcher>ERROR</dispatcher>
  </filter-mapping>

</web-fragment>




© 2015 - 2024 Weber Informatics LLC | Privacy Policy