Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [tycho-user] using eclipserun to call org.eclipse.ant.core.antRunner for p2.composite task

Thanks for the suggestions. I've updated my eclipserun dependencies to this and it's working now.

                                <dependency>
                                    <artifactId>org.apache.ant</artifactId>
                                    <type>eclipse-plugin</type>
                                </dependency>
                                <dependency>
                                    <artifactId>org.eclipse.ant.core</artifactId>
                                    <type>eclipse-plugin</type>
                                </dependency>
                                <dependency>
                                    <artifactId>org.eclipse.equinox.p2.core.feature</artifactId>
                                    <type>eclipse-feature</type>
                                </dependency>
                                <dependency>
                                    <artifactId>org.eclipse.equinox.p2.extras.feature</artifactId>
                                    <type>eclipse-feature</type>
                                </dependency>
                                <dependency>
                                    <artifactId>org.eclipse.equinox.ds</artifactId>
                                    <type>eclipse-plugin</type>
                                </dependency>

(it needed the extras feature for the p2 ant taskdefs, and neither feature seems to cover the org.eclipse.equinox.ds plugin). I submitted this enhancement request to add a goal to tycho-p2-extras plugin for creating a composite index.

https://bugs.eclipse.org/bugs/show_bug.cgi?id=412874

I didn't see a Tycho Extras product.

-----Original Message-----
From: tycho-user-bounces@xxxxxxxxxxx [mailto:tycho-user-bounces@xxxxxxxxxxx] On Behalf Of Oberlies, Tobias
Sent: Friday, July 12, 2013 5:05 AM
To: Tycho user list
Subject: Re: [tycho-user] using eclipserun to call org.eclipse.ant.core.antRunner for p2.composite task

For the implicitly required p2 bundles, I usually just include the feature org.eclipse.equinox.p2.core.feature.

Regards
Tobias
 

> -----Original Message-----
> From: tycho-user-bounces@xxxxxxxxxxx 
> [mailto:tycho-user-bounces@xxxxxxxxxxx]
> On Behalf Of Krzysztof Daniel
> Sent: Freitag, 12. Juli 2013 07:34
> To: tycho-user@xxxxxxxxxxx
> Subject: Re: [tycho-user] using eclipserun to call 
> org.eclipse.ant.core.antRunner for p2.composite task
> 
> In order to run p2 repo tools, I had to configure following deps:
> 
> org.eclipse.equinox.p2.repository.tools
> org.eclipse.equinox.ds
> org.eclipse.equinox.p2.touchpoint.eclipse
> org.eclipse.equinox.p2.touchpoint.natives
> org.eclipse.equinox.p2.transport.ecf
> 
> Especially ecf was not trivial to figure out.
> 
> --
> Krzysztof Daniel <kdaniel@xxxxxxxxxx>
> Red Hat
> 
> _______________________________________________
> tycho-user mailing list
> tycho-user@xxxxxxxxxxx
> https://dev.eclipse.org/mailman/listinfo/tycho-user
_______________________________________________
tycho-user mailing list
tycho-user@xxxxxxxxxxx
https://dev.eclipse.org/mailman/listinfo/tycho-user

----------------------------------------------------------------------
This e-mail, including any attached files, may contain confidential and privileged information for the sole use of the intended recipient.  Any review, use, distribution, or disclosure by others is strictly prohibited.  If you are not the intended recipient (or authorized to receive information for the intended recipient), please contact the sender by reply e-mail and delete all copies of this message.


Back to the top