Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [cbi-dev] M6 removed features

So I was able to use the cvs-feature from the eclipse.platform.team repository but now I'm having issue with the build trying to pull in the org.eclipse.cvs.sources. Last time I ran into something like this I was able to add it to the excludes list, however this time the item is not a plugin. The feature.xml pulls it in with:

   <includes
         id="org.eclipse.cvs.source"
         version="0.0.0"/>


I'm not sure how to exclude this using the pom file. I tried using <plugin id="org.eclipse.cvs.source"> as well as <exclude id="org.eclipse.cvs.source"> but these did not seem to work. For example:

      <plugin>
        <groupId>org.eclipse.tycho.extras</groupId>
        <artifactId>tycho-source-feature-plugin</artifactId>
        <executions>
          <execution>
            <phase>package</phase>
            <id>source-feature</id>
            <goals>
              <goal>source-feature</goal>
            </goals>
            <configuration>
              <excludes>
                <plugin id="org.eclipse.cvs.source" />
              </excludes>


I was hoping someone could point me in the right direction.


Thanks,

Thanh


[ERROR] Cannot resolve project dependencies:
[ERROR]   Software being installed: org.eclipse.sdk.feature.group 3.8.0.qualifier
[ERROR]   Missing requirement: org.eclipse.sdk.feature.group 3.8.0.qualifier requires 'org.eclipse.cvs.source.feature.group 0.0.0' but it could not be found
[ERROR]
[ERROR] Internal error: java.lang.RuntimeException: "No solution found because the problem is unsatisfiable.": ["Unable to satisfy dependency from org.eclipse.sdk.feature.group 3.8.0.qualifier to org.eclipse.cvs.source.feature.group 0.0.0.", "No solution found because the problem is unsatisfiable."] -> [Help 1]
org.apache.maven.InternalErrorException: Internal error: java.lang.RuntimeException: "No solution found because the problem is unsatisfiable.": ["Unable to satisfy dependency from org.eclipse.sdk.feature.group 3.8.0.qualifier to org.eclipse.cvs.source.feature.group 0.0.0.", "No solution found because the problem is unsatisfiable."]



On 03/21/2012 10:55 AM, Thanh Ha wrote:
Thanks Paul,

I probably should have thought of that. Looks like this feature was moved to the eclipse.platform.team repository.


Thanh


Back to the top