Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
[tycho-user] tycho extras: mirror

Hi,

how can i tell the tycho mirror task to
download the jar file instead of the jar.pack.gz
file?

when i specify 

includePacked = false

then nothing will be downloaded at all

<plugin>

<groupId>org.eclipse.tycho.extras</groupId>

<artifactId>tycho-p2-extras-plugin</artifactId>

<version>${tycho-version}</version>

<executions>

<execution>

<phase>prepare-package</phase>

<goals>

<goal>mirror</goal>

</goals>

</execution>

</executions>

<configuration>

<destination>${project.build.directory}/dependencies-mvn</destination>

<followStrictOnly>true</followStrictOnly>

<includeOptional>true</includeOptional>

<includeNonGreedy>false</includeNonGreedy>

<latestVersionOnly>true</latestVersionOnly>

<mirrorMetadataOnly>false</mirrorMetadataOnly>

<compress>false</compress>

<append>false</append>

<includePacked>false</includePacked>

<xzCompress>false</xzCompress>

<source>

<!-- source repositories to mirror from -->

<repository>

<id>xtext</id>

<layout>p2</layout>

<url>https://download.eclipse.org/modeling/tmf/xtext/updates/releases/2.23.0/</url>

</repository>

</source>

<ius>

<iu>

<id>org.eclipse.xtext.builder</id>

<version>2.23.0.v20200831-0808</version>

</iu>

</ius>

</configuration>

</plugin>


Thanks
Christian

Back to the top