Skip to main content


Eclipse Community Forums
Forum Search:

Search      Help    Register    Login    Home
Home » Eclipse Projects » Plugin Development Environment (PDE) » Could not find a org.eclipse.pde.core.targetLocations extension for type: Maven
Could not find a org.eclipse.pde.core.targetLocations extension for type: Maven [message #1860857] Wed, 06 September 2023 11:46 Go to next message
Rubén Porras Campo is currently offline Rubén Porras CampoFriend
Messages: 67
Registered: July 2009
Member
Hi,

I would like to upgrade Guava and Google Inject in my target file. Currently I am using p2 repositories, but I am correct, no p2 repositories are available for the new releases of Guava and Google Inject.

I have Eclipse 2023-06 as development environment and I have added

<location includeDependencyDepth="none" includeDependencyScopes="compile" includeSource="true" label="Misc" missingManifest="error" type="Maven">
    <dependencies>
      <dependency>
        <groupId>com.google.inject</groupId>
        <artifactId>guice</artifactId>
        <version>7.0.0</version>
        <type>jar</type>
      </dependency>
      <dependency>
        <groupId>com.google.inject.extensions</groupId>
        <artifactId>guice-assistedinject</artifactId>
        <version>7.0.0</version>
        <type>jar</type>
      </dependency>
      <dependency>
        <groupId>com.google.guava</groupId>
        <artifactId>failureaccess</artifactId>
        <version>1.0.1</version>
        <type>jar</type>
      </dependency>
      <dependency>
        <groupId>com.google.guava</groupId>
        <artifactId>guava</artifactId>
        <version>32.1.2-jre</version>
        <type>jar</type>
      </dependency>
    </dependencies>
  </location>


to my target file.

When I load the target file, I get the following error:

Could not find a org.eclipse.pde.core.targetLocations extension for type: Maven

Do you know what the problem is?
Re: Could not find a org.eclipse.pde.core.targetLocations extension for type: Maven [message #1862270 is a reply to message #1860857] Tue, 21 November 2023 17:18 Go to previous message
Michael Haubenwallner is currently offline Michael HaubenwallnerFriend
Messages: 4
Registered: March 2023
Junior Member
Here, with Eclipse 2023-09, the plugin that provides the implementation of ITargetLocationFactory for the "Maven" type of target locations,
is the "org.eclipse.m2e.pde.target" plugin, which is part of "org.eclipse.m2e.pde.feature".
Previous Topic:Not familiar with PDE, need help building a plugin and a local update site
Next Topic:configuring 3rd party libraries to eclipse plugin project
Goto Forum:
  


Current Time: Sun Apr 28 15:57:11 GMT 2024

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

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

Back to the top