Incorrect functions.json
Latest version does not correctly create the bindings in the funciton.json file for each function. Previous version built from sources did create the function bindings correctly.
Correct function.json for my application:
{ "scriptFile" : "..\blah-1.0-SNAPSHOT.jar", "entryPoint" : "someurl", "bindings" : [ { "type" : "httpTrigger", "name" : "req", "direction" : "in", "route" : "network/{network-id}", "webHookType" : "NONE", "authLevel" : "anonymous", "methods" : [ "GET" ] }, { "type" : "http", "name" : "$return", "direction" : "out", "webHookType" : "NONE" } ], "disabled" : false }
New code produces: { "scriptFile" : "..\blah-1.0-SNAPSHOT.jar", "entryPoint" : "someurl", }
More news, seems to only apply to http trigger.