Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
[eclipse-dev] Dummy Maven repo containing artifacts necessary to build Platform

Hi all,
I have created a dummy Maven repository at https://github.com/mickaelistria/bordel/tree/main/eclipseInfraOutage/mavenRepo/ that contains the necessary bits to build Platform. You can for example use it in your own repo, via settings.xml, or directly adding it to root pom file, to create working GitHub actions.

<repositories>

<repository>

<id>workaround-eclipse-outage</id>

<url>https://raw.githubusercontent.com/mickaelistria/bordel/refs/heads/main/eclipseInfraOutage/mavenRepo/</url>

<releases>

<enabled>true</enabled>

</releases>

<snapshots>

<enabled>true</enabled>

</snapshots>

</repository>

</repositories>

<pluginRepositories>

<pluginRepository>

<id>workaround-eclipse-outage</id>

<url>https://raw.githubusercontent.com/mickaelistria/bordel/refs/heads/main/eclipseInfraOutage/mavenRepo/</url>

<releases>

<enabled>true</enabled>

</releases>

<snapshots>

<enabled>true</enabled>

</snapshots>

</pluginRepository>

</pluginRepositories>


HTH
--
Mickael Istria
Eclipse IDE developer, for Red Hat

Back to the top