2012-11-01 16:43:33 -04:00
|
|
|
//
|
2020-01-09 14:10:19 -05:00
|
|
|
// ========================================================================
|
|
|
|
// Copyright (c) 1995-2020 Mort Bay Consulting Pty Ltd and others.
|
2012-11-01 16:43:33 -04:00
|
|
|
//
|
2020-01-09 14:10:19 -05:00
|
|
|
// This program and the accompanying materials are made available under
|
|
|
|
// the terms of the Eclipse Public License 2.0 which is available at
|
|
|
|
// https://www.eclipse.org/legal/epl-2.0
|
2012-11-01 16:43:33 -04:00
|
|
|
//
|
2020-01-09 14:10:19 -05:00
|
|
|
// This Source Code may also be made available under the following
|
|
|
|
// Secondary Licenses when the conditions for such availability set
|
|
|
|
// forth in the Eclipse Public License, v. 2.0 are satisfied:
|
|
|
|
// the Apache License v2.0 which is available at
|
|
|
|
// https://www.apache.org/licenses/LICENSE-2.0
|
2012-11-01 16:43:33 -04:00
|
|
|
//
|
2020-01-09 14:10:19 -05:00
|
|
|
// SPDX-License-Identifier: EPL-2.0 OR Apache-2.0
|
|
|
|
// ========================================================================
|
2012-11-01 16:43:33 -04:00
|
|
|
//
|
|
|
|
|
2020-12-01 19:10:15 -05:00
|
|
|
module org.eclipse.jetty.websocket.servlet
|
2020-02-18 05:43:54 -05:00
|
|
|
{
|
2020-12-01 19:10:15 -05:00
|
|
|
exports org.eclipse.jetty.websocket.servlet;
|
2012-11-01 16:43:33 -04:00
|
|
|
|
2020-12-01 19:10:15 -05:00
|
|
|
requires transitive org.eclipse.jetty.servlet;
|
|
|
|
requires org.eclipse.jetty.websocket.core.server;
|
2020-06-09 10:36:49 -04:00
|
|
|
requires org.slf4j;
|
2020-02-18 05:43:54 -05:00
|
|
|
}
|