Skip to main content


Eclipse Community Forums
Forum Search:

Search      Help    Register    Login    Home
Home » Eclipse Projects » Equinox » Building and testing frameworks eclipse.c
Building and testing frameworks eclipse.c [message #1849762] Tue, 01 February 2022 15:17 Go to next message
Felix Van der Jeugt is currently offline Felix Van der JeugtFriend
Messages: 2
Registered: February 2022
Junior Member
I was hoping to make some changes to features/org.eclipse.equinox.executable.feature/library/eclipse.c in the rt.equinox.framework and try them out. I'm failing to even run the tests though: executing mvn test in the root of the repository fails on missing artifacts (see below). Any pointers to documentation on how to build and test this?


[ERROR] Failed to execute goal on project org.eclipse.equinox.executable: Could not resolve dependencies for project org.eclipse.equinox.feature:org.eclipse.equinox.executable:eclipse-feature:3.8.1500-SNAPSHOT: The following artifacts could not be resolved: org.eclipse.equinox:org.eclipse.equinox.launcher.gtk.linux.x86_64:jar:1.2.400-SNAPSHOT, org.eclipse.equinox:org.eclipse.equinox.launcher.gtk.linux.ppc64le:jar:1.2.400-SNAPSHOT, org.eclipse.equinox:org.eclipse.equinox.launcher.gtk.linux.aarch64:jar:1.2.400-SNAPSHOT, org.eclipse.equinox:org.eclipse.equinox.launcher.win32.win32.x86_64:jar:1.2.400-SNAPSHOT, org.eclipse.equinox:org.eclipse.equinox.launcher.cocoa.macosx.x86_64:jar:1.2.400-SNAPSHOT, org.eclipse.equinox:org.eclipse.equinox.launcher.cocoa.macosx.aarch64:jar:1.2.400-SNAPSHOT, org.eclipse.equinox:org.eclipse.equinox.launcher.cocoa.macosx:jar:1.2.400-SNAPSHOT: Failure to find org.eclipse.equinox:org.eclipse.equinox.launcher.gtk.linux.x86_64:jar:1.2.400-SNAPSHOT in https://repo.eclipse.org/content/repositories/snapshots/ was cached in the local repository, resolution will not be reattempted until the update interval of eclipse.snapshots has elapsed or updates are forced -> [Help 1]
[ERROR]
[ERROR] To see the full stack trace of the errors, re-run Maven with the -e switch.
[ERROR] Re-run Maven using the -X switch to enable full debug logging.
[ERROR]
[ERROR] For more information about the errors and possible solutions, please read the following articles:
[ERROR] [Help 1] <removed-link>/confluence/display/MAVEN/DependencyResolutionException
[ERROR]
[ERROR] After correcting the problems, you can resume the build with the command
[ERROR] mvn <args> -rf :org.eclipse.equinox.executable


(Complete log is attached)
  • Attachment: logs.txt
    (Size: 96.40KB, Downloaded 55 times)
Re: Building and testing frameworks eclipse.c [message #1849770 is a reply to message #1849762] Wed, 02 February 2022 05:21 Go to previous messageGo to next message
Ed Merks is currently offline Ed MerksFriend
Messages: 33140
Registered: July 2009
Senior Member
I see this in the root pom.xml
  <!-- 
    To build individual bundles, we specify a repository where to find parent pom, 
    in case it is not in local maven cache already
    and that parent pom also has fuller individual-bundle profile 
    defined that is combined with this one. --> 
  <profiles>
    <profile>
      <id>build-individual-bundles</id>
      <repositories>
        <repository>
          <releases>
            <enabled>true</enabled>
          </releases>
          <snapshots>
            <enabled>true</enabled>
          </snapshots>
          <id>eclipse-hosted</id>
          <url>https://repo.eclipse.org/content/repositories/eclipse/</url>
        </repository>
      </repositories>
    </profile>
Maybe enabling that profile helps? If you're still stuck, maybe asking on this mailing list will help get more help:

https://accounts.eclipse.org/mailing-list/equinox-dev


Ed Merks
Professional Support: https://www.macromodeling.com/
Re: Building and testing frameworks eclipse.c [message #1849788 is a reply to message #1849770] Wed, 02 February 2022 15:32 Go to previous message
Felix Van der Jeugt is currently offline Felix Van der JeugtFriend
Messages: 2
Registered: February 2022
Junior Member
Enable that (and the other) profiles didn't help; I'll wait for a bit longer here and then turn to the mailing list. Thanks for the advise.
Previous Topic:Regrading R4_19_maintenance branch
Next Topic:Debugging dependency resolution
Goto Forum:
  


Current Time: Wed Apr 24 22:04:47 GMT 2024

Powered by FUDForum. Page generated in 0.03662 seconds
.:: Contact :: Home ::.

Powered by: FUDforum 3.0.2.
Copyright ©2001-2010 FUDforum Bulletin Board Software

Back to the top