2012-11-01 16:43:33 -04:00
|
|
|
//
|
2020-01-09 14:10:19 -05:00
|
|
|
// ========================================================================
|
2021-01-21 16:05:57 -05:00
|
|
|
// Copyright (c) 1995-2021 Mort Bay Consulting Pty Ltd and others.
|
2012-11-01 16:43:33 -04:00
|
|
|
//
|
2020-12-10 17:04:50 -05:00
|
|
|
// 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.
|
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
|
|
|
}
|