Skip to content

Commit 653ef67

Browse files
committed
Fixed OSGI import version for Grizzly
- We use 4.0.2 for build - The range was limiting major upgrades of other projects while breaking changes in Grizzly still did not affect Jersey. Now we set just the minimal Grizzly version. Signed-off-by: David Matějček <david.matejcek@omnifish.ee>
1 parent c1af60e commit 653ef67

2 files changed

Lines changed: 6 additions & 6 deletions

File tree

containers/grizzly2-http/pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<!--
3-
3+
Copyright (c) 2026 Contributors to the Eclipse Foundation.
44
Copyright (c) 2011, 2025 Oracle and/or its affiliates. All rights reserved.
55
66
This program and the accompanying materials are made available under the
@@ -131,7 +131,7 @@
131131
<configuration>
132132
<instructions>
133133
<Import-Package>
134-
org.glassfish.grizzly.*;version="[3.0,5.0)",
134+
org.glassfish.grizzly.*;version="3",
135135
${jakarta.rest.osgi.version},
136136
*
137137
</Import-Package>
@@ -167,4 +167,4 @@
167167
</plugin>
168168
</plugins>
169169
</build>
170-
</project>
170+
</project>

containers/grizzly2-servlet/pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<!--
3-
3+
Copyright (c) 2026 Contributors to the Eclipse Foundation.
44
Copyright (c) 2012, 2025 Oracle and/or its affiliates. All rights reserved.
55
66
This program and the accompanying materials are made available under the
@@ -71,7 +71,7 @@
7171
<instructions>
7272
<Import-Package>
7373
jakarta.servlet.*;version="[6.0,7.0)",
74-
org.glassfish.grizzly.*;version="[3.0,5.0)",
74+
org.glassfish.grizzly.*;version="3",
7575
${jakarta.rest.osgi.version},
7676
*
7777
</Import-Package>
@@ -81,4 +81,4 @@
8181
</plugin>
8282
</plugins>
8383
</build>
84-
</project>
84+
</project>

0 commit comments

Comments
 (0)