Skip to content

Commit

Permalink
Fixed ignored escape sequence by explicitly defining it via maven
Browse files Browse the repository at this point in the history
Should fix quarkusio#20814
  • Loading branch information
schoeffm committed Jan 2, 2022
1 parent 5e2a021 commit 623be69
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions extensions/azure-functions-http/maven-archetype/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,5 +21,17 @@
<version>3.0.1</version>
</extension>
</extensions>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-resources-plugin</artifactId>
<version>3.1.0</version>
<configuration>
<escapeString>\</escapeString>
</configuration>
</plugin>
</plugins>
</pluginManagement>
</build>
</project>

0 comments on commit 623be69

Please sign in to comment.