Skip to content

Instantly share code, notes, and snippets.

@brunoborges
Created January 24, 2019 09:03
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 brunoborges/748cbb50dff58eb599efd78d5052b8e8 to your computer and use it in GitHub Desktop.
Save brunoborges/748cbb50dff58eb599efd78d5052b8e8 to your computer and use it in GitHub Desktop.
<plugin>
<groupId>com.microsoft.azure</groupId>
<artifactId>azure-webapp-maven-plugin</artifactId>
<!-- check Maven Central for the latest version -->
<version>1.5.2</version>
<configuration>
<deploymentType>jar</deploymentType>
<jarFile>${project.build.directory}/${project.build.finalName}-exec.jar</jarFile>
<stopAppDuringDeployment>true</stopAppDuringDeployment>
<resourceGroup>tomee-group</resourceGroup>
<appName>tomee-azure-uk</appName>
<region>ukwest</region>
<pricingTier>B1</pricingTier>
<linuxRuntime>jre8</linuxRuntime>
</configuration>
</plugin>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment