-
Notifications
You must be signed in to change notification settings - Fork 3k
Replacing quarkus.properties with quarkus.platform.version #5564
New issue
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
Conversation
independent-projects/tools/common/src/test/java/io/quarkus/cli/commands/ListExtensionsTest.java
Show resolved
Hide resolved
core/deployment/src/main/java/io/quarkus/deployment/configuration/ConfigDefinition.java
Outdated
Show resolved
Hide resolved
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
i tested it with and without -o
and for mvn/gradle and it works.
Just want to know if those org.acme changes in the test was really intended.
QUARKUS_NAMESPACE + ".platform.group-id", | ||
QUARKUS_NAMESPACE + ".platform.artifact-id", | ||
QUARKUS_NAMESPACE + ".platform.version", | ||
QUARKUS_NAMESPACE + "-plugin.version", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'm pretty sure that this entry isn't needed. The config subsystem should only warn on properties whose name starts with quarkus.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ok, removing it from here. Thanks.
a0fb26c
to
b6a5f4a
Compare
c461f4f
to
3766fed
Compare
…quarkus.platform.version and quarkus-plugin.version for Maven and quarkusVersion with quarkusPluginVersion for Gradle, also adding quarkus.platform.group-is and quarkus.platform.artifact-id to pom.xml templates and sorting of properties before persisting pom.xml.
...and quarkus-plugin.version in Maven templates and quarkusVersion with quarkusPluginVersion in the Gradle ones, also adding quarkus.platform.group-is and quarkus.platform.artifact-id to pom.xml templates and sorting of properties before persisting pom.xml.
Fixes #4744