Skip to content

Commit

Permalink
fix: assume semantic versioning for SPI Fly static weaving bundle
Browse files Browse the repository at this point in the history
  • Loading branch information
sabberworm committed May 30, 2024
1 parent 5e9a24a commit 914f9fb
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ private static void extendImportPackage(Manifest manifest) throws IOException {
Version osgiVersion = Version.parseVersion(utilPkgVersion);

Version minVersion = new Version(osgiVersion.getMajor(), osgiVersion.getMinor(), osgiVersion.getMicro());
Version maxVersion = new Version(osgiVersion.getMajor(), osgiVersion.getMinor() + 1, 0);
Version maxVersion = new Version(osgiVersion.getMajor() + 1, 0, 0);

String ip = manifest.getMainAttributes().getValue(IMPORT_PACKAGE);
if (ip == null)
Expand Down

0 comments on commit 914f9fb

Please sign in to comment.