Skip to content

Instantly share code, notes, and snippets.

@alexandramartinez
Created February 24, 2023 01:16
Show Gist options
  • Save alexandramartinez/b57ad2faa1e828d3ffbaa238cc07cfa3 to your computer and use it in GitHub Desktop.
Save alexandramartinez/b57ad2faa1e828d3ffbaa238cc07cfa3 to your computer and use it in GitHub Desktop.
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-clean-plugin</artifactId>
<version>3.0.0</version>
</plugin>
<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>${anypoint.username}</username>
<password>${anypoint.password}</password>
<applicationName>${app.name}</applicationName>
<environment>${env}</environment>
<workerType>MICRO</workerType>
<region>us-east-2</region>
<workers>1</workers>
<objectStoreV2>true</objectStoreV2>
<!-- Start: SECURED PROPERTIES CI/CD -->
<properties>
<secure.key>${decryption.key}</secure.key>
</properties>
<!-- End: SECURED PROPERTIES CI/CD -->
</cloudHubDeployment>
<classifier>mule-application</classifier>
</configuration>
</plugin>
</plugins>
</build>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment