Skip to content

Instantly share code, notes, and snippets.

@bhatikuldeep
Last active March 10, 2021 01:07
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bhatikuldeep/071775f0ff7ef7aeee0420581bbfac34 to your computer and use it in GitHub Desktop.
Save bhatikuldeep/071775f0ff7ef7aeee0420581bbfac34 to your computer and use it in GitHub Desktop.
mulesoft-deployment-sample-pom.xml
...
<plugin>
<groupId>org.mule.tools.maven</groupId>
<artifactId>mule-maven-plugin</artifactId>
<version>${mule.maven.plugin.version}</version>
<extensions>true</extensions>
<configuration>
<cloudHubDeployment>
<uri>https://anypoint.mulesoft.com</uri>
<muleVersion>${app.runtime}</muleVersion>
<username>${MULESOFT_USERNAME}</username>
<password>${MULESOFT_PASSWORD}</password>
<environment>${MULESOFT_ENVIRONMENT}</environment>
<applicationName>${project.name}-${MULESOFT_ENVIRONMENT}</applicationName>
<region>${MULESOFT_REGION}</region>
<workerType>${MULESOFT_WORKERTYPE}</workerType>
<workers>${MULESOFT_WORKERS}</workers>
<objectStoreV2>true</objectStoreV2>
<!-- Additional properties (not in used at this moment) -->
<properties>
<anypoint.platform.client_id />
<anypoint.platform.client_secret />
<anypoint.platform.analytics_base_uri />
<anypoint.platform.base_uri />
<jms.url />
<api.id />
</properties>
</cloudHubDeployment>
</configuration>
</plugin>
...
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment