Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [tycho-user] How to add source to RCP

Hi,

I'm not sure it's the best way but it sounds like you need to use <exclude> like this:

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

Example:

Regards,
Marc-Andre


From: tycho-user-bounces@xxxxxxxxxxx [tycho-user-bounces@xxxxxxxxxxx] on behalf of Juan Antonio Gonzalez Cano [jgonzalez@xxxxxxxxxxxxxxx]
Sent: Monday, 29 June 2015 9:10 AM
To: Tycho user list
Subject: Re: [tycho-user] How to add source to RCP

Thanks for your help. Now I have the following problem:

[ERROR] Failed to execute goal org.eclipse.tycho.extras:tycho-source-feature-plugin:0.20.0:source-feature (source-feature) on project com.mycompany.platform.core.feature: Could not generate source feature for project MavenProject: mset_platform:com.mycompany.platform.core.feature:1.5.0-SNAPSHOT @ F:\WorkSpace\com.mycompany.platform.core.feature\pom.xml
[ERROR] Missing sources for plugins [org.mozilla.universalchardet_1.0.3.201309181746, org.apache.commons.net_3.0.0]
[ERROR] -> [Help 1]

How I can solve it without adding third-party sources?

Un Saludo
Juan Antonio González Cano


2015-06-29 7:30 GMT+01:00 Matthias Sohn <matthias.sohn@xxxxxxxxx>:
On Mon, Jun 29, 2015 at 7:55 AM, Juan Antonio Gonzalez Cano <jgonzalez@xxxxxxxxxxxxxxx> wrote:
Hello friends, I need to add the source of my plugin to RCP, any idea?


_______________________________________________
tycho-user mailing list
tycho-user@xxxxxxxxxxx
To change your delivery options, retrieve your password, or unsubscribe from this list, visit
https://dev.eclipse.org/mailman/listinfo/tycho-user


Back to the top