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
thanks for creating this promising SDK project! I'm currently evaluating it and I have a question regarding to deploy a process definition.
Is it possible to automatically deploy a bpmn model placed in /aps-extensions-jar/src/main/resources/apps?
I copied the 4-eyes app from test resources to main resources but it is not automatically deployed. Or do I misunderstand the documentation?
I also found this community question and I'm wondering if I need to implement the "auto deployer" by myself? https://hub.alfresco.com/t5/alfresco-process-services/how-to-auto-deploy-a-bpmn-model-to-aps/td-p/226253
Best regards,
Nathanael
The text was updated successfully, but these errors were encountered:
you are welcome 😄
Currently the unique way to deploy app available in the SDK is to use the REST API.
The reason for that is because the main goal was to execute unit and integration tests.
This part of the code (row 87) will deploy your app in APS:
// Importing the Four Eyes App in APSIntegrationTestUtils.importApp(appZipFile, ACTIVITI_APP_USERNAME, ACTIVITI_APP_PASSWORD, BASE_PATH_PROTOCOL, BASE_PATH_HOSTNAME, BASE_PATH_PORT);
We could use the Java API code used in the unit test sample for implementing something like a bootstrapper component for this purporse. We'll definitely would like to have something like you are asking for and we also discussed internally at Zia.
I leave this issue open for using it as the main reference for this.
thanks for your answer! Just for background information for your internal discussion: We like to build an APS docker image with the extension jar and deploy it to different stages from dev to prod without manual process deployment.
Hello,
thanks for creating this promising SDK project! I'm currently evaluating it and I have a question regarding to deploy a process definition.
Is it possible to automatically deploy a bpmn model placed in
/aps-extensions-jar/src/main/resources/apps
?I copied the 4-eyes app from test resources to main resources but it is not automatically deployed. Or do I misunderstand the documentation?
I also found this community question and I'm wondering if I need to implement the "auto deployer" by myself?
https://hub.alfresco.com/t5/alfresco-process-services/how-to-auto-deploy-a-bpmn-model-to-aps/td-p/226253
Best regards,
Nathanael
The text was updated successfully, but these errors were encountered: