Skip to content

Instantly share code, notes, and snippets.

@jprinet
Created August 14, 2024 12:17
Show Gist options
  • Save jprinet/b6c7be44e6f8715d5a220c19fa954088 to your computer and use it in GitHub Desktop.
Save jprinet/b6c7be44e6f8715d5a220c19fa954088 to your computer and use it in GitHub Desktop.
Configure quarkus-maven-plugin
<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