Reading Time: 4 minutes

Introduction

After creating a basic App, you might be wondering how to automate the process of deploying a Mule App to . In this post, we are introducing a Maven plugin that enables that use case. As a result a Mule App will be deployed automatically to CloudHub after a Maven build. This is achieved using the goal cloudhub-deploy from the Mule AppKit Maven Plugin.

In a ideal development workflow, each time the project builds the Mule Application will be deployed to the cloud providing a cutting edge instance that can be used for QA of the latest snapshot. Both Bamboo or Jenkins can be configured in order to run Maven and deploy the Mule App to CloudHub.

Show me the code

latest report
Learn why we are the Leaders in management and

Given an existing Mule App (created using the Mule Application Archetype), we have a Maven pom.xml file. Check that the project has as packaging type mule. Then, add the following to the build > plugins pom.xml section:

The property cloudhub.domain must be set in the properties block. This is where the app is going to be deployed:


And in the settings.xml file a server must be added together with some valid credentials for CloudHub so that the deploy can take place. This will be the credentials used for the deploy:

Include the plugin repository (where the AppKit Maven Plugin is hosted) in the pom.xml file:

After that, run the deploy maven goal:

$ mvn clean deploy

and the app will be deployed to CloudHub.

Wait! I don't want to deploy my artifacts yet!

As deploy Maven Phase is related also with Artifact Deployment, it can be better to change the plugin deployment phase to verify. On that way, and by doing mvn clean verify, it can achieve the same result without having to upload the resulting Maven artifact to a remote repository.

That's great but where can I find some usage examples?

Some working examples can be found in Mule Appkit integration tests:here and here.

Happy Hacking!