Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Widen protected version number range for jersey-gf-ejb dependencies #4395

Closed
arjantijms opened this issue Feb 19, 2020 · 1 comment
Closed

Comments

@arjantijms
Copy link
Contributor

The jersey-gf-ejb module has a protection in place to ensure it can't be used with versions of GlassFish higher than 6. As we're now moving to GlassFish 6, this range should be widened.

E.g. the 6) in the below fragment of the pom should be set to at least 7):

             <plugin>
                <groupId>org.apache.felix</groupId>
                <artifactId>maven-bundle-plugin</artifactId>
                <inherited>true</inherited>
                <extensions>true</extensions>
                <configuration>
                    <instructions>
                        <!-- Explicitly set versions for packages from GlassFish to allow future uptake of GlassFish 5.x-->
                        <Import-Package>
                            com.sun.*;version="[4.0,6)",
                            javax.annotation.*;version="!",
                            org.glassfish.ejb.*;version="[4.0,6)",
                            org.glassfish.internal.*;version="[4.0,6)",
                            *
                        </Import-Package>
                    </instructions>
                </configuration>
            </plugin>
@arjantijms
Copy link
Contributor Author

Fixed by: #4396

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant