Issue #6601 - export websocket-core-common to jetty-util for DecoratedObjectFactory
Signed-off-by: Lachlan Roberts <lachlan@webtide.com>
This commit is contained in:
parent
e64b390fd6
commit
ead1f6b160
|
@ -24,7 +24,8 @@ module org.eclipse.jetty.websocket.core.common
|
|||
|
||||
exports org.eclipse.jetty.websocket.core.internal to
|
||||
org.eclipse.jetty.websocket.core.client,
|
||||
org.eclipse.jetty.websocket.core.server;
|
||||
org.eclipse.jetty.websocket.core.server,
|
||||
org.eclipse.jetty.util; // Export to DecoratedObjectFactory.
|
||||
|
||||
// The Jetty & Javax API Layers need to access both access some internal utilities which we don't want to expose.
|
||||
exports org.eclipse.jetty.websocket.core.internal.util to
|
||||
|
|
1
pom.xml
1
pom.xml
|
@ -153,7 +153,6 @@
|
|||
<module>documentation</module>
|
||||
<module>jetty-keystore</module>
|
||||
<module>jetty-unixdomain-server</module>
|
||||
<module>test-websocket-core</module>
|
||||
</modules>
|
||||
|
||||
<build>
|
||||
|
|
|
@ -1,3 +1,16 @@
|
|||
//
|
||||
// ========================================================================
|
||||
// Copyright (c) 1995-2021 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
|
||||
// ========================================================================
|
||||
//
|
||||
|
||||
module org.eclipse.jetty.websocket.core.tests
|
||||
{
|
||||
exports org.example.websocket;
|
||||
|
|
Loading…
Reference in New Issue