We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Creatiing a project as described in the Azure Functions Guide with
mvn archetype:generate -DarchetypeGroupId=io.quarkus -DarchetypeArtifactId=quarkus-azure-functions-http-archetype -DarchetypeVersion=2.3.0.Final
generates broken project.
Group Ids and Archetype Ids are the ones from the archetype
4.0.0 io.quarkus quarkus-azure-functions-http-archetype 2.3.0.Final
and the pom contains hardcoded paths
/path/to/quarkus-release/work/quarkus/extensions/azure-functions-http/maven-archetype/target/azure-functions/${functionAppName}
and it seems the version for
<azure.functions.maven.plugin.version>1.9.1</azure.functions.maven.plugin.version>
and caused problems for me with the latest vesion of az cli.
When I did uses 1.12.0.Final as archetype version the pom looked ok.
The text was updated successfully, but these errors were encountered:
It seems like in https://github.com/quarkusio/quarkus/blob/2.3.0.Final/extensions/azure-functions-http/maven-archetype/src/main/resources/archetype-resources/pom.xml, project.build.directory is getting set at release time.
project.build.directory
Sorry, something went wrong.
cc @patriot1burke
Fixed ignored escape sequence by explicitly defining it via maven
623be69
Should fix quarkusio#20814
daf7a57
Should fix quarkusio#20814 (cherry picked from commit 623be69)
Successfully merging a pull request may close this issue.
Creatiing a project as described in the Azure Functions Guide with
mvn archetype:generate
-DarchetypeGroupId=io.quarkus
-DarchetypeArtifactId=quarkus-azure-functions-http-archetype
-DarchetypeVersion=2.3.0.Final
generates broken project.
Group Ids and Archetype Ids are the ones from the archetype
4.0.0
io.quarkus
quarkus-azure-functions-http-archetype
2.3.0.Final
and the pom contains hardcoded paths
and it seems the version for
<azure.functions.maven.plugin.version>1.9.1</azure.functions.maven.plugin.version>
and caused problems for me with the latest vesion of az cli.
When I did uses 1.12.0.Final as archetype version the pom looked ok.
The text was updated successfully, but these errors were encountered: