Last active
March 10, 2021 01:07
-
-
Save bhatikuldeep/071775f0ff7ef7aeee0420581bbfac34 to your computer and use it in GitHub Desktop.
mulesoft-deployment-sample-pom.xml
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
... | |
<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