name: blade-deploy description: Deploy a Liferay OSGi module using blade gw deploy and tail the log for bundle activation confirmation
Deploy steps for a Liferay OSGi module:
Run deploy (replace
<module-path>with the target, e.g.modules/headless-delivery-ext):blade gw deploy -p <module-path>Watch for bundle activation in the log:
tail -f bundles/tomcat/logs/catalina.out | grep -E "(STARTED|FAILED|Exception)"Confirm you see a
STARTEDline for the deployed bundle symbolic name, e.g.:STARTED com.axiell.arena.liferay.modules.headless_delivery_ext.impl_1.0.0
If deployment fails, check bundles/logs/liferay.<date>.log for OSGi resolver errors.
To deploy a single submodule only: blade gw deploy -p <module-path>/<submodule-name>