Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [tycho-user] file-based target location via <repository>?

Hello Julian,

in general, this should be possible.

I am using something like this in several CI jobs:


    <repositories>
        <repository>
            <id>my-dsl</id>
            <url>${dsl.repository}</url>
            <layout>p2</layout>
        </repository>
    </repositories>

Whereby the "dsl.repository" points to a created P2 repository containing some features and bundles.
Whether this uses "https://..." or "file://..." does not matter.


HTH,
Axel


Am 06.10.20 um 08:35 schrieb Honnen, Julian:

Hi,

 

is it possible to declare a file-based target location via a <repository> element in Tycho 2.0? Something like

 

                <repositories>

                <repository>

   <id>target</id>

   <url>file:///C:/eclipse-installation</url>

   <layout>eclipse-installation</layout>

</repository>

</repositories>

 

 

Regards, Julian


_______________________________________________
tycho-user mailing list
tycho-user@xxxxxxxxxxx
To unsubscribe from this list, visit https://www.eclipse.org/mailman/listinfo/tycho-user

Back to the top