Skip to content

Breaking Changes to Java Deploy Configuration

Eric Jizba edited this page Feb 6, 2019 · 2 revisions

Prior to version 0.14.0 of the Azure Functions extension for VS Code, Java projects would automatically run mvn clean package before every deploy and detect the correct folder to deploy. After 0.14.0, Java projects must specify the following settings or this behavior will not occur:

azureFunctions.preDeployTask

New projects will default to package, with the following defined in your .vscode/tasks.json file:

(new projects will default to package)

  • azureFunctions.deploySubPath (new projects will default to ``)

New