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

Remove unnecessary exports from MicroProfile Config bundle #24864

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
29 changes: 9 additions & 20 deletions appserver/microprofile/config/pom.xml
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--

Copyright (c) 2022 Contributors to Eclipse Foundation.
Copyright (c) 2022, 2024 Contributors to Eclipse Foundation.

This program and the accompanying materials are made available under the
terms of the Eclipse Public License v. 2.0, which is available at
Expand Down Expand Up @@ -73,34 +73,23 @@
<instructions>
<!-- A list of packages that are exposed to classes outside the bundle -->
<Export-Package>
org.glassfish.microprofile.config,
io.helidon.config.mp,
io.helidon.config,
io.helidon.config.mp,
</Export-Package>
<!-- A list of dependencies to include in the bundle (as they're not native OSGI bundles) -->
<Embed-Dependency>
<!--
The helidon MP config dependency tree, illustrating what we actually output to the GF bundle
-->
groupId=io.helidon.microprofile.config,
groupId=io.helidon.config;artifactId=helidon-config-mp,
groupId=io.helidon.common;artifactId=helidon-common,
groupId=io.helidon.common;artifactId=helidon-common-service-loader,
groupId=io.helidon.config;artifactId=helidon-config-yaml-mp,
groupId=io.helidon.config;artifactId=helidon-config,
<!--
groupId=io.helidon.common;artifactId=helidon-common-reactive,
groupId=io.helidon.common;artifactId=helidon-common-mapper, -->
groupId=io.helidon.common;artifactId=helidon-common-media-type,
groupId=io.helidon.config;artifactId=helidon-config-mp,
groupId=io.helidon.common;artifactId=helidon-common,
groupId=io.helidon.common;artifactId=helidon-common-service-loader,
groupId=io.helidon.config;artifactId=helidon-config-yaml-mp,
groupId=io.helidon.config;artifactId=helidon-config,
groupId=io.helidon.common;artifactId=helidon-common-media-type,
groupId=io.helidon.config;artifactId=helidon-config-yaml,
artifactId=snakeyaml,
<!--
groupId=io.helidon.config;artifactId=helidon-config-encryption,
groupId=io.helidon.common;artifactId=helidon-common-key-util,
groupId=io.helidon.common;artifactId=helidon-common-configurable,
groupId=io.helidon.common;artifactId=helidon-common-context,
groupId=io.helidon.common;artifactId=helidon-common-crypto,
groupId=io.helidon.config;artifactId=helidon-config-object-mapping, -->
artifactId=snakeyaml,
</Embed-Dependency>
<!--
Include transitive dependencies (note that this only include compile scoped dependencies,
Expand Down