I set up a Tycho build for multiple plug-ins, a feature, a site and a target defined within the pom.xml
s.
I can run my application from within the Eclipse I
Also a possibility is like :
in the tycho configuration, if you are configuring this way:
<plugin>
<groupId>org.eclipse.tycho</groupId>
<artifactId>target-platform-configuration</artifactId>
<configuration>
<pomDependencies>consider</pomDependencies>
</configuration>
</plugin>
it will resolve dependencies from the dependencies configured in your pom. Otherwise, it will resolved dependencies from the entries in your MANIFEST file
It seems that your target platform contains ca.odell.glazedlists
in Eclipse but not in Tycho because that bundle is included via a mechanism which is not supported by Tycho. There is a warning in the log that tells you so:
[WARNING] Target location type: Directory is not supported
[WARNING] Target location type: Profile is not supported
[WARNING] Target location type: Directory is not supported
You need to change your target definition file so that it only uses "Software Site" locations.