azure-maven-plugins
azure-maven-plugins copied to clipboard
Maven plugins for Azure
### Plugin name and version ``` Maven plugin for Azure webapps Version: 1.9.0-SNAPSHOT ``` ### Plugin configuration in your `pom.xml` ``` com.microsoft.azure azure-webapp-maven-plugin 1.9.0-SNAPSHOT V2 your-resource-group your-appname P1v2 westeurope docker ...
### Plugin name and version azure-functions-maven-plugin 1.3.5-SNAPSHOT ### Plugin configuration in your pom.xml ``` com.microsoft.azure azure-functions-maven-plugin ${functionResourceGroup} ${functionAppName} ${functionAppRegion} B3 RUN_FROM_ZIP linux FUNCTIONS_EXTENSION_VERSION ~3 AzureWebJobsStorage xxxxx ...... package-functions package ```...
### Plugin name and version azure-functions-maven-plugin 1.3.5-SNAPSHOT ### Plugin configuration in your `pom.xml` ``` com.microsoft.azure azure-functions-maven-plugin ${functionResourceGroup} ${functionAppName} ${functionAppRegion} B3 RUN_FROM_ZIP linux FUNCTIONS_EXTENSION_VERSION ~3 AzureWebJobsStorage xxxxx ...... package-functions package ```...
What does this implement/fix? Explain your changes. --------------------------------------------------- … Does this close any currently open issues? ------------------------------------------ Any relevant logs, screenshots, error output, etc.? ------------------------------------- Any other comments? ------------------- …...
https://github.com/microsoft/azure-maven-plugins/blob/a7e667210ec6fbf10def857d691caf1fbbdadf2b/pom.xml#L70 CVE-2021-26291 Recommended upgrade version:3.8.1
### Plugin name and version I ran through the steps from https://learn.microsoft.com/en-us/azure/app-service/quickstart-java?pivots=java-maven-tomcat and tried with both mvn com.microsoft.azure:azure-webapp-maven-plugin:2.12.0:config and mvn com.microsoft.azure:azure-webapp-maven-plugin:2.13.0:config ### Plugin configuration in your `pom.xml` com.microsoft.azure azure-webapp-maven-plugin 2.13.0...
I am upgrading to java version 17 and spring boot 3.2.0 , Azure deployment is failing with below mentioned exceptions: azure libraries have used below **azure-core 1.30.0 and this version...
### Plugin name and version azure-webapp-maven-plugin 2.12.0 ### Plugin configuration in your `pom.xml` ``` com.microsoft.azure azure-webapp-maven-plugin 2.12.0 alerts eastus alerts Linux Java 11 Tomcat 10.0 ${project.basedir}/target *.war ``` ### Expected...
Hi! I wonder how I can pass option --enableAuth from https://learn.microsoft.com/en-us/azure/azure-functions/functions-core-tools-reference?tabs=v2#func-start to mvn azure-functions:run. BR
What does this implement/fix? Explain your changes. --------------------------------------------------- Some might need to pass options like --enableAuth, this change enables passing this options and many other than the port and local...