Skip to main content


Eclipse Community Forums
Forum Search:

Search      Help    Register    Login    Home
Home » Language IDEs » C / C++ IDE (CDT) » Add some parts of CDT as dependency
Add some parts of CDT as dependency [message #1698719] Wed, 17 June 2015 12:36
Missing name Mising name is currently offline Missing name Mising nameFriend
Messages: 1
Registered: June 2015
Junior Member
Hello Guys,

I am making modifications on org.eclipse.cdt.dsf.gdb. I have added the modified sources of this plugin to my project.

My problem is that this plugin has dependencies on other plugins of cdt like "org.eclipse.cdt.dsf".

I don't want to get all the CDT project sources to my project. I want to configure the pom file of the modified plugin in order to automatically get that dependency of CDT project during the build. I do the following :

<repositories>
<repository>
<id>kepler-cdt</id>
<url>http://download.eclipse.org/tools/cdt/releases/kepler</url>
<layout>p2</layout>
</repository>
</repositories>

<dependencies>
<dependency>
<groupId>org.eclipse.cdt</groupId>
<artifactId>cdt-parent</artifactId>
<version>8.6.0-SNAPSHOT</version>
<type>eclipse-plugin</type>
</dependency>
</dependencies>

But it does not work. The error is that the dependecy is missing. Do you have an idea what should I do ?
Previous Topic:How to theme some parts of editor?
Next Topic:Problem with string handling using scanf() and gets() function.
Goto Forum:
  


Current Time: Fri Apr 19 03:23:55 GMT 2024

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

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

Back to the top