You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Under the section: Building an Enterprise Subsystem Archive
It states: By default, it will not generate the manifest file, so we have to set the generateManifest header to true. To install the feature on to the Open Liberty runtime, we need to set the visibility directive to "public". We can do so by setting the Subsystem-SymbolicName header to "Bundle-SymbolicName;visibility:=public". If the visibility is set to protected|private, the Liberty Maven Plugin can’t resolve the feature. Also, the plugin automatically creates the mandatory Subsystem-Content header. IBM-ShortName is an optional header alias to Subsystem-SymbolicName.
Change the line: We can do so by setting the Subsystem-SymbolicName header to "Bundle-SymbolicName;visibility:=public".
to: We can do so by setting the Subsystem-SymbolicName header to "Subsystem-SymbolicName;visibility:=public".
In the blog: Build and install an Open Liberty user feature by using Maven plug-ins
Under the section: Building an Enterprise Subsystem Archive
It states:
By default, it will not generate the manifest file, so we have to set the generateManifest header to true. To install the feature on to the Open Liberty runtime, we need to set the visibility directive to "public". We can do so by setting the Subsystem-SymbolicName header to "Bundle-SymbolicName;visibility:=public". If the visibility is set to protected|private, the Liberty Maven Plugin can’t resolve the feature. Also, the plugin automatically creates the mandatory Subsystem-Content header. IBM-ShortName is an optional header alias to Subsystem-SymbolicName.
Change the line:
We can do so by setting the Subsystem-SymbolicName header to "Bundle-SymbolicName;visibility:=public".
to:
We can do so by setting the Subsystem-SymbolicName header to "Subsystem-SymbolicName;visibility:=public".
Also in the example source for SUBSYSTEM.MF
replace line:
Subsystem-SymbolicName: com.example.bundle.Activator;visibility:=public
with
Subsystem-SymbolicName: com.example.feature.SimpleActivator;visibility:=public
The text was updated successfully, but these errors were encountered: