Azure Functions: Package - microsoft/azure-maven-plugins GitHub Wiki
azure-functions:package
- Scan the output directory (default is
${project.basedir}/target/classes
) and generatingfunction.json
for each function (method annotated withFunctionName
) in the staging directory. - Copy JAR files from the build directory (default is
${project.basedir}/target/
) to the staging directory.
The default lifecycle phase for
azure-functions:package
ispackage
. You can simply runmvn package
to generate all the outputs you need to run/deploy your project.
Default staging directory is
${project.basedir}/target/azure-functions/${function-app-name}/