I have an azure function that i want to run and test locally in IntelliJ IDEA. I followed all the steps that were listed here: https://learn.microsoft.com/en-us/azure/azure-functions/functions-create-maven-intellij When i try to run the app via IntelliJ, i get this error log
Azure Toolkit Error
Failed to execute run configuration, as Azure Functions Core Tools not found. Please go to https://aka.ms/azfunc-install to install Azure Functions Core Tools.
If you have installed the core tools, please refer https://github.com/microsoft/azure-tools-for-java/wiki/FAQ to get the core tools path and set the value in function run configuration. failed
Call Stack:
Execute run configuration
Run function app locally
Validate runtime of function(null)
Azure Functions Core Tools not found. Please go to https://aka.ms/azfunc-install to install Azure Functions Core Tools.
If you have installed the core tools, please refer https://github.com/microsoft/azure-tools-for-java/wiki/FAQ to get the core tools path and set the value in function run configuration
I've followed the steps in the links given but to no avail. When I use mvn package followed by mvn azure-functions:run the app runs but I need to hit certain debug points through IntelliJ.
I've been stumped with this for a while, any idea what i could be missing?