fix: Package manifest only includes system plugin — missing component and webservices plugin #31

Open
opened 2026-06-29 14:06:17 +00:00 by jmiller · 1 comment
Owner

Problem

source/pkg_mokosuitefield.xml only packages the system plugin:

<files folder="packages">
    <file type="plugin" id="plg_system_mokosuitefield" group="system">plg_system_mokosuitefield.zip</file>
</files>

The component (com_mokosuitefield) and webservices plugin (plg_webservices_mokosuitefield) are not included in the package manifest. Installing the package would install only the system plugin — no component, no API.

Fix

  • Add component to package manifest: <file type="component" id="com_mokosuitefield">com_mokosuitefield.zip</file>
  • Add webservices plugin to package manifest: <file type="plugin" id="plg_webservices_mokosuitefield" group="webservices">plg_webservices_mokosuitefield.zip</file>
  • Verify build workflow creates all three zip files into the packages folder
## Problem `source/pkg_mokosuitefield.xml` only packages the system plugin: ```xml <files folder="packages"> <file type="plugin" id="plg_system_mokosuitefield" group="system">plg_system_mokosuitefield.zip</file> </files> ``` The component (`com_mokosuitefield`) and webservices plugin (`plg_webservices_mokosuitefield`) are not included in the package manifest. Installing the package would install only the system plugin — no component, no API. ## Fix - [ ] Add component to package manifest: `<file type="component" id="com_mokosuitefield">com_mokosuitefield.zip</file>` - [ ] Add webservices plugin to package manifest: `<file type="plugin" id="plg_webservices_mokosuitefield" group="webservices">plg_webservices_mokosuitefield.zip</file>` - [ ] Verify build workflow creates all three zip files into the packages folder
Author
Owner

Branch created: feature/31-fix-package-manifest-only-includes-syste

git fetch origin
git checkout feature/31-fix-package-manifest-only-includes-syste
Branch created: [`feature/31-fix-package-manifest-only-includes-syste`](https://git.mokoconsulting.tech/MokoConsulting/MokoSuiteField/src/branch/feature/31-fix-package-manifest-only-includes-syste) ```bash git fetch origin git checkout feature/31-fix-package-manifest-only-includes-syste ```
Sign in to join this conversation.
Priority Medium
Type Feature
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: MokoConsulting/MokoSuiteField#31