We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
I'm having issue with situation, where i have custom Maven settings (provided with -s <custom-settings>) in combination with system property (-D<repository-name>) which enables specific repository (eg. specific repository where i want the update take artifacts from) from the <custom-settings>. I can see that system properties are not propagated at https://github.com/quarkusio/quarkus/blob/main/independent-projects/tools/devtools-common/src/main/java/io/quarkus/devtools/project/update/rewrite/QuarkusUpdateCommand.java#L159
-s <custom-settings>
-D<repository-name>
<custom-settings>
For example my code needs atlassian repo to be buildable
<profile> <id>repo.atlassian-public</id> <activation> <activeByDefault>false</activeByDefault> <property> <name>repo.atlassian-public</name> </property> </activation> <repositories> <repository> <id>atlassian-public</id> <name>Atlassian Public</name> <url>https://packages.atlassian.com/maven-external/</url> <snapshots> <enabled>true</enabled> </snapshots> <releases> <enabled>true</enabled> </releases> </repository> </repositories> <pluginRepositories> <pluginRepository> <id>atlassian-public</id> <name>Atlassian Public</name> <url>https://packages.atlassian.com/maven-external/</url> </pluginRepository> </pluginRepositories> </profile>
set in custom-settings.xml
custom-settings.xml
and then using -Drepo.atlassian-public i could enable it.
-Drepo.atlassian-public
In this example, the system property -Drepo.atlassian-public is not propagated (but i guess any -D<property> is not propagated).
-D<property>
No response
uname -a
ver
java -version
mvnw --version
gradlew --version
The text was updated successfully, but these errors were encountered:
/cc @quarkusio/devtools (maven)
Sorry, something went wrong.
No branches or pull requests
Describe the bug
I'm having issue with situation, where i have custom Maven settings (provided with
-s <custom-settings>
) in combination with system property (-D<repository-name>
) which enables specific repository (eg. specific repository where i want the update take artifacts from) from the<custom-settings>
. I can see that system properties are not propagated at https://github.com/quarkusio/quarkus/blob/main/independent-projects/tools/devtools-common/src/main/java/io/quarkus/devtools/project/update/rewrite/QuarkusUpdateCommand.java#L159For example my code needs atlassian repo to be buildable
set in
custom-settings.xml
and then using
-Drepo.atlassian-public
i could enable it.In this example, the system property
-Drepo.atlassian-public
is not propagated (but i guess any-D<property>
is not propagated).Expected behavior
No response
Actual behavior
No response
How to Reproduce?
No response
Output of
uname -a
orver
No response
Output of
java -version
No response
Quarkus version or git rev
No response
Build tool (ie. output of
mvnw --version
orgradlew --version
)No response
Additional information
No response
The text was updated successfully, but these errors were encountered: