You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In our company we have the situation that we need to load the P2 artifacts required by Eclipse JDT from a custom JFrog Artifactory registry.
We have the following two issues:
The P2 mirror requires authentication. How can I set this via the plugin configuration?
We want to open source our Java project and therefore not include custom configuration in the pom.xml. When persons from outside the company pull our code from GitHub, they dont need the p2Mirror configuration. Is there a possibility to configure the P2 mirror via configuration files like settings.xml in Maven? Or maybe introduce environment variables the plugin checks to load from custom mirrors?
Thanks very much in advance!
The text was updated successfully, but these errors were encountered:
I actually found a small workaround by defining custom properties in the pom.xml using
<!-- Spotless configuration for P2 mirror -->
<p2.credentials /> <!-- must be empty, override this via Maven's settings.xml file if custom P2 mirror needed -->
<p2.mirror>download.eclipse.org</p2.mirror> <!-- do not touch, override this via Maven's settings.xml file if custom P2 mirror needed -->
and using them in Spotless plugin configuration via
@nedtwigg What do you think about this workaround? It only requires little adjustments on the local machine. Of course it would be way better if the maven repositories defined in the settings.xml pointing to our internal artifactory would be automatically picked up instead of passing it to the plugin through the pom.xml configuration.
In our company we have the situation that we need to load the P2 artifacts required by Eclipse JDT from a custom JFrog Artifactory registry.
We have the following two issues:
pom.xml
. When persons from outside the company pull our code from GitHub, they dont need the p2Mirror configuration. Is there a possibility to configure the P2 mirror via configuration files likesettings.xml
in Maven? Or maybe introduce environment variables the plugin checks to load from custom mirrors?Thanks very much in advance!
The text was updated successfully, but these errors were encountered: