Skip to content

Commit

Permalink
Issue #6601 - export websocket-core-common to jetty-util for Decorate…
Browse files Browse the repository at this point in the history
…dObjectFactory

Signed-off-by: Lachlan Roberts <lachlan@webtide.com>
  • Loading branch information
lachlan-roberts committed Aug 30, 2021
1 parent e64b390 commit ead1f6b
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 2 deletions.
Expand Up @@ -24,7 +24,8 @@

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
Expand Down
1 change: 0 additions & 1 deletion pom.xml
Expand Up @@ -153,7 +153,6 @@
<module>documentation</module>
<module>jetty-keystore</module>
<module>jetty-unixdomain-server</module>
<module>test-websocket-core</module>
</modules>

<build>
Expand Down
13 changes: 13 additions & 0 deletions tests/test-jpms/test-websocket-core/src/main/java/module-info.java
@@ -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;
Expand Down

0 comments on commit ead1f6b

Please sign in to comment.