forked from eclipse-ee4j/jersey
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Maxim Nesen <maxim.nesen@oracle.com>
- Loading branch information
Showing
15 changed files
with
398 additions
and
2 deletions.
There are no files selected for viewing
31 changes: 31 additions & 0 deletions
31
connectors/jetty-http2-connector/src/main/java/module-info.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
/* | ||
* Copyright (c) 2023 Oracle and/or its affiliates. All rights reserved. | ||
* | ||
* This program and the accompanying materials are made available under the | ||
* terms of the Eclipse Public License v. 2.0, which is available at | ||
* http://www.eclipse.org/legal/epl-2.0. | ||
* | ||
* 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: GNU General Public License, | ||
* version 2 with the GNU Classpath Exception, which is available at | ||
* https://www.gnu.org/software/classpath/license.html. | ||
* | ||
* SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 | ||
*/ | ||
|
||
module org.glassfish.jersey.jetty.http2.connector { | ||
|
||
requires jakarta.ws.rs; | ||
|
||
requires org.eclipse.jetty.client; | ||
requires org.eclipse.jetty.http2.client; | ||
requires org.eclipse.jetty.http2.client.transport; | ||
|
||
requires org.glassfish.jersey.core.common; | ||
requires org.glassfish.jersey.core.client; | ||
requires org.glassfish.jersey.jetty.connector; | ||
|
||
exports org.glassfish.jersey.jetty.http2.connector; | ||
opens org.glassfish.jersey.jetty.http2.connector; | ||
} |
41 changes: 41 additions & 0 deletions
41
connectors/jetty-http2-connector/src/test/java/module-info.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
/* | ||
* Copyright (c) 2023 Oracle and/or its affiliates. All rights reserved. | ||
* | ||
* This program and the accompanying materials are made available under the | ||
* terms of the Eclipse Public License v. 2.0, which is available at | ||
* http://www.eclipse.org/legal/epl-2.0. | ||
* | ||
* 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: GNU General Public License, | ||
* version 2 with the GNU Classpath Exception, which is available at | ||
* https://www.gnu.org/software/classpath/license.html. | ||
* | ||
* SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 | ||
*/ | ||
|
||
module org.glassfish.jersey.jetty.http2.connector { | ||
|
||
requires jakarta.inject; | ||
requires jakarta.ws.rs; | ||
requires jakarta.xml.bind; | ||
|
||
requires java.logging; | ||
|
||
requires org.eclipse.jetty.client; | ||
requires org.eclipse.jetty.http2.client; | ||
requires org.eclipse.jetty.http2.client.transport; | ||
|
||
requires org.glassfish.jersey.core.common; | ||
requires org.glassfish.jersey.core.client; | ||
requires org.glassfish.jersey.core.server; | ||
requires org.glassfish.jersey.jetty.connector; | ||
|
||
requires org.junit.jupiter.api; | ||
requires org.hamcrest; | ||
|
||
requires org.glassfish.jersey.tests.framework.core; | ||
|
||
exports org.glassfish.jersey.jetty.http2.connector; | ||
opens org.glassfish.jersey.jetty.http2.connector; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
32 changes: 32 additions & 0 deletions
32
connectors/jetty11-connector/src/main/java/module-info.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
/* | ||
* Copyright (c) 2023 Oracle and/or its affiliates. All rights reserved. | ||
* | ||
* This program and the accompanying materials are made available under the | ||
* terms of the Eclipse Public License v. 2.0, which is available at | ||
* http://www.eclipse.org/legal/epl-2.0. | ||
* | ||
* 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: GNU General Public License, | ||
* version 2 with the GNU Classpath Exception, which is available at | ||
* https://www.gnu.org/software/classpath/license.html. | ||
* | ||
* SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 | ||
*/ | ||
|
||
module org.glassfish.jersey.jetty11.connector { | ||
requires java.logging; | ||
|
||
requires jakarta.ws.rs; | ||
|
||
requires org.eclipse.jetty.client; | ||
requires org.eclipse.jetty.http; | ||
requires org.eclipse.jetty.io; | ||
requires org.eclipse.jetty.util; | ||
|
||
requires org.glassfish.jersey.core.common; | ||
requires org.glassfish.jersey.core.client; | ||
|
||
exports org.glassfish.jersey.jetty.connector; | ||
opens org.glassfish.jersey.jetty.connector; | ||
} |
48 changes: 48 additions & 0 deletions
48
connectors/jetty11-connector/src/test/java/module-info.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
/* | ||
* Copyright (c) 2023 Oracle and/or its affiliates. All rights reserved. | ||
* | ||
* This program and the accompanying materials are made available under the | ||
* terms of the Eclipse Public License v. 2.0, which is available at | ||
* http://www.eclipse.org/legal/epl-2.0. | ||
* | ||
* 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: GNU General Public License, | ||
* version 2 with the GNU Classpath Exception, which is available at | ||
* https://www.gnu.org/software/classpath/license.html. | ||
* | ||
* SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 | ||
*/ | ||
|
||
module org.glassfish.jersey.jetty11.connector { | ||
requires java.logging; | ||
|
||
requires jakarta.inject; | ||
requires jakarta.ws.rs; | ||
|
||
requires org.eclipse.jetty.client; | ||
// requires org.eclipse.jetty.server; | ||
requires org.eclipse.jetty.http; | ||
requires org.eclipse.jetty.io; | ||
requires org.eclipse.jetty.util; | ||
|
||
requires org.junit.jupiter.api; | ||
requires org.junit.jupiter.engine; | ||
requires org.hamcrest; | ||
|
||
// required by Grizzly* modules | ||
requires pfl.tf; | ||
requires gmbal; | ||
// end of required by Grizzly* modules | ||
|
||
requires jakarta.xml.bind; | ||
|
||
requires org.glassfish.jersey.tests.framework.core; | ||
|
||
requires org.glassfish.jersey.core.common; | ||
requires org.glassfish.jersey.core.client; | ||
requires org.glassfish.jersey.core.server; | ||
|
||
exports org.glassfish.jersey.jetty.connector; | ||
opens org.glassfish.jersey.jetty.connector; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
/* | ||
* Copyright (c) 2022, 2023 Oracle and/or its affiliates. All rights reserved. | ||
* | ||
* This program and the accompanying materials are made available under the | ||
* terms of the Eclipse Public License v. 2.0, which is available at | ||
* http://www.eclipse.org/legal/epl-2.0. | ||
* | ||
* 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: GNU General Public License, | ||
* version 2 with the GNU Classpath Exception, which is available at | ||
* https://www.gnu.org/software/classpath/license.html. | ||
* | ||
* SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 | ||
*/ | ||
|
||
module org.glassfish.jersey.container.jetty.http2 { | ||
|
||
requires jakarta.ws.rs; | ||
|
||
requires org.eclipse.jetty.http2.server; | ||
requires org.eclipse.jetty.alpn.server; | ||
|
||
requires org.glassfish.jersey.core.common; | ||
requires org.glassfish.jersey.core.server; | ||
requires org.glassfish.jersey.container.jetty.http; | ||
|
||
exports org.glassfish.jersey.jetty.http2; | ||
opens org.glassfish.jersey.jetty.http2; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
/* | ||
* Copyright (c) 2022, 2023 Oracle and/or its affiliates. All rights reserved. | ||
* | ||
* This program and the accompanying materials are made available under the | ||
* terms of the Eclipse Public License v. 2.0, which is available at | ||
* http://www.eclipse.org/legal/epl-2.0. | ||
* | ||
* 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: GNU General Public License, | ||
* version 2 with the GNU Classpath Exception, which is available at | ||
* https://www.gnu.org/software/classpath/license.html. | ||
* | ||
* SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 | ||
*/ | ||
|
||
module org.glassfish.jersey.container.jetty.http2 { | ||
requires java.logging; | ||
|
||
requires jakarta.ws.rs; | ||
|
||
requires org.eclipse.jetty.http2.server; | ||
requires org.eclipse.jetty.alpn.server; | ||
|
||
requires org.glassfish.jersey.core.common; | ||
requires org.glassfish.jersey.core.server; | ||
requires org.glassfish.jersey.container.jetty.http; | ||
|
||
requires org.junit.jupiter.api; | ||
requires org.hamcrest; | ||
|
||
exports org.glassfish.jersey.jetty.http2; | ||
opens org.glassfish.jersey.jetty.http2; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
31 changes: 31 additions & 0 deletions
31
test-framework/providers/jetty-http2/src/main/java/module-info.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
/* | ||
* Copyright (c) 2023 Oracle and/or its affiliates. All rights reserved. | ||
* | ||
* This program and the accompanying materials are made available under the | ||
* terms of the Eclipse Public License v. 2.0, which is available at | ||
* http://www.eclipse.org/legal/epl-2.0. | ||
* | ||
* 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: GNU General Public License, | ||
* version 2 with the GNU Classpath Exception, which is available at | ||
* https://www.gnu.org/software/classpath/license.html. | ||
* | ||
* SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 | ||
*/ | ||
|
||
module org.glassfish.jersey.tests.framework.provider.jetty.http2 { | ||
requires java.logging; | ||
|
||
requires jakarta.servlet; | ||
requires jakarta.ws.rs; | ||
|
||
requires org.eclipse.jetty.server; | ||
|
||
requires org.glassfish.jersey.tests.framework.core; | ||
requires org.glassfish.jersey.core.common; | ||
requires org.glassfish.jersey.core.client; | ||
requires org.glassfish.jersey.container.jetty.http2; | ||
|
||
exports org.glassfish.jersey.test.jetty.http2; | ||
} |
38 changes: 38 additions & 0 deletions
38
test-framework/providers/jetty-http2/src/test/java/module-info.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
/* | ||
* Copyright (c) 2023 Oracle and/or its affiliates. All rights reserved. | ||
* | ||
* This program and the accompanying materials are made available under the | ||
* terms of the Eclipse Public License v. 2.0, which is available at | ||
* http://www.eclipse.org/legal/epl-2.0. | ||
* | ||
* 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: GNU General Public License, | ||
* version 2 with the GNU Classpath Exception, which is available at | ||
* https://www.gnu.org/software/classpath/license.html. | ||
* | ||
* SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 | ||
*/ | ||
|
||
module org.glassfish.jersey.tests.framework.provider.jetty.http2 { | ||
requires java.logging; | ||
|
||
requires jakarta.ws.rs; | ||
|
||
requires org.eclipse.jetty.server; | ||
|
||
requires org.glassfish.jersey.tests.framework.core; | ||
requires org.glassfish.jersey.core.common; | ||
requires org.glassfish.jersey.core.client; | ||
requires org.glassfish.jersey.core.server; | ||
requires org.glassfish.jersey.container.jetty.http; | ||
requires org.glassfish.jersey.container.jetty.http2; | ||
requires org.glassfish.jersey.inject.hk2; | ||
|
||
exports org.glassfish.jersey.test.jetty.http2; | ||
|
||
opens org.glassfish.jersey.test.jetty.http2; | ||
|
||
requires org.junit.jupiter.api; | ||
requires org.hamcrest; | ||
} |
31 changes: 31 additions & 0 deletions
31
test-framework/providers/jetty/src/main/java/module-info.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
/* | ||
* Copyright (c) 2023 Oracle and/or its affiliates. All rights reserved. | ||
* | ||
* This program and the accompanying materials are made available under the | ||
* terms of the Eclipse Public License v. 2.0, which is available at | ||
* http://www.eclipse.org/legal/epl-2.0. | ||
* | ||
* 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: GNU General Public License, | ||
* version 2 with the GNU Classpath Exception, which is available at | ||
* https://www.gnu.org/software/classpath/license.html. | ||
* | ||
* SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 | ||
*/ | ||
|
||
module org.glassfish.jersey.tests.framework.provider.jetty { | ||
requires java.logging; | ||
|
||
// requires jakarta.servlet; | ||
requires jakarta.ws.rs; | ||
|
||
requires org.eclipse.jetty.server; | ||
|
||
requires org.glassfish.jersey.tests.framework.core; | ||
requires org.glassfish.jersey.core.common; | ||
requires org.glassfish.jersey.core.client; | ||
requires org.glassfish.jersey.container.jetty.http; | ||
|
||
exports org.glassfish.jersey.test.jetty; | ||
} |
Oops, something went wrong.