Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [tycho-user] Tycho cannot resolve generated source feature

Nevermind, I just realized I forgot to add this section to my pom.xml which seems to be the reason for my issue.

      <plugin>
        <groupId>org.eclipse.tycho</groupId>
        <artifactId>tycho-p2-plugin</artifactId>
        <version>${tycho-version}</version>
        <executions>
          <execution>
            <id>attached-p2-metadata</id>
            <phase>package</phase>
            <goals>
              <goal>p2-metadata</goal>
            </goals>
          </execution>
        </executions>
      </plugin>

Thanks,

Thanh


On 05/12/13 11:02 AM, Thanh Ha wrote:
Hi Everyone,

I'm having some issues with Tycho resolving a source feature that it generated as part of a build. Attached is an example small project that I created based of my project I'm trying to build.

My issue is I have a feature that requires another source feature but for some reason Tycho's not able to find it even thought it made it and throws the following error:

[ERROR] Cannot resolve project dependencies:
[ERROR]   Software being installed: org.eclipse.webtools.repository raw:3.6.0.'SNAPSHOT'/format(n[.n=0;[.n=0;[-S]]]):3.6.0-SNAPSHOT
[ERROR]   Missing requirement: org.eclipse.jst.server_adapters.ext.sdk.feature.feature.group 3.3.300.201312051553 requires 'org.eclipse.jst.server_adapters.ext.feature.source.feature.group [3.3.200.201312051553]' but it could not be found


Any ideas?


Thanks,


Thanh


_______________________________________________
tycho-user mailing list
tycho-user@xxxxxxxxxxx
https://dev.eclipse.org/mailman/listinfo/tycho-user


Back to the top