etty.ee9.jetty-ee9-webapp.12.0.14.source-code.module-info Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jetty-ee9-webapp Show documentation
Show all versions of jetty-ee9-webapp Show documentation
Jetty web application support
The newest version!
//
// ========================================================================
// Copyright (c) 1995 Mort Bay Consulting Pty Ltd and others.
//
// This program and the accompanying materials are made available under the
// terms of the Eclipse Public License v. 2.0 which is available at
// https://www.eclipse.org/legal/epl-2.0, or the Apache License, Version 2.0
// which is available at https://www.apache.org/licenses/LICENSE-2.0.
//
// SPDX-License-Identifier: EPL-2.0 OR Apache-2.0
// ========================================================================
//
import org.eclipse.jetty.ee9.webapp.Configuration;
import org.eclipse.jetty.ee9.webapp.FragmentConfiguration;
import org.eclipse.jetty.ee9.webapp.JaasConfiguration;
import org.eclipse.jetty.ee9.webapp.JaspiConfiguration;
import org.eclipse.jetty.ee9.webapp.JettyWebXmlConfiguration;
import org.eclipse.jetty.ee9.webapp.JmxConfiguration;
import org.eclipse.jetty.ee9.webapp.JndiConfiguration;
import org.eclipse.jetty.ee9.webapp.JspConfiguration;
import org.eclipse.jetty.ee9.webapp.MetaInfConfiguration;
import org.eclipse.jetty.ee9.webapp.ServletsConfiguration;
import org.eclipse.jetty.ee9.webapp.WebAppConfiguration;
import org.eclipse.jetty.ee9.webapp.WebInfConfiguration;
import org.eclipse.jetty.ee9.webapp.WebXmlConfiguration;
module org.eclipse.jetty.ee9.webapp
{
requires org.slf4j;
requires transitive java.instrument;
requires transitive org.eclipse.jetty.ee9.servlet;
requires transitive org.eclipse.jetty.xml;
requires transitive org.eclipse.jetty.ee;
exports org.eclipse.jetty.ee9.webapp;
uses Configuration;
provides Configuration with
FragmentConfiguration,
JaasConfiguration,
JaspiConfiguration,
JettyWebXmlConfiguration,
JmxConfiguration,
JndiConfiguration,
JspConfiguration,
MetaInfConfiguration,
ServletsConfiguration,
WebAppConfiguration,
WebInfConfiguration,
WebXmlConfiguration;
}