Move Gluon components out of Kit into new Gluon-plugin module #748
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Issue
Fixes #241
This PR introduces
gluon-plugin
as a new maven module, containing all the Gluon components (custom controls, hierarchy, metadata, themes and stylesheets), that were previously in Scene Builder Kit.Scene Builder Kit doesn't have dependency on Gluon Charm-Glisten anymore.
Scene Builder App uses both Kit and Gluon-plugin, and therefore the end result is the same for Scene Builder users as it was before this PR.
This PR supersedes #241, which was a good start. But many things have change since it was created: we have a modular maven project, with JDK 21+, and now we can use JPMS modules and ServiceProviders to easily inject the plugin.
A few interfaces have been defined:
Developers could use the Gluon-plugin implementation for their own development of similar plugins for their libraries.
Progress