<plugin> <groupId>com.microsoft.azure</groupId> <artifactId>azure-functions-maven-plugin</artifactId> <version>[Use the latest version above]</version> </plugin>
Q : Where can I find the valid values for function configuration, like <pricingTier>
and <region>
?
A : You could find these values in Configuration Details
Q: Can I upload other static content, e.g. HTML files, as part of the function deployment?
A: You can achieve this by adding configurations for the maven-resources-plugin
. For example:
<plugin> <artifactId>maven-resources-plugin</artifactId> <executions> <execution> <id>copy-resources</id> <phase>package</phase> <goals> <goal>copy-resources</goal> </goals> <configuration> <overwrite>true</overwrite> <outputDirectory>${stagingDirectory}</outputDirectory> <resources> ... <!-- Your static resources --> <resource> <directory>${project.basedir}/src/main/resources</directory> <includes> <include>www/**</include> </includes> </resource> </resources> </configuration> </execution> ... </executions> </plugin>
RetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4