Created
August 14, 2024 12:17
-
-
Save jprinet/b6c7be44e6f8715d5a220c19fa954088 to your computer and use it in GitHub Desktop.
Configure quarkus-maven-plugin
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<plugin> | |
<groupId>${quarkus.platform.group-id}</groupId> | |
<artifactId>quarkus-maven-plugin</artifactId> | |
<version>${quarkus.platform.version}</version> | |
<extensions>true</extensions> | |
<executions> | |
<execution> | |
<id>track-prod-config-changes</id> | |
<phase>process-resources</phase> | |
<goals> | |
<goal>track-config-changes</goal> | |
</goals> | |
<configuration> | |
<dumpCurrentWhenRecordedUnavailable>true</dumpCurrentWhenRecordedUnavailable> | |
</configuration> | |
</execution> | |
<execution> | |
<goals> | |
<goal>build</goal> | |
<goal>generate-code</goal> | |
<goal>generate-code-tests</goal> | |
</goals> | |
</execution> | |
</executions> | |
</plugin> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment