Created
August 14, 2024 15:01
-
-
Save jprinet/256e2fe8b2a89c822da6125e3caa8d0a to your computer and use it in GitHub Desktop.
Configure Quarkus properties in profiles
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
<profiles> | |
<profile> | |
<id>local</id> | |
<activation> | |
… | |
</activation> | |
<properties> | |
<develocity.quarkus.dump.config.suffix>config-check-local</develocity.quarkus.dump.config.suffix> | |
</properties> | |
</profile> | |
<profile> | |
<id>ci</id> | |
<activation> | |
… | |
</activation> | |
<properties> | |
<develocity.quarkus.dump.config.suffix>config-check-ci</develocity.quarkus.dump.config.suffix> | |
</properties> | |
</profile> | |
... | |
</profiles> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment