blob: 80a45ee1c4b50f7c1af77ce1e7d9a1c131abcd5f [file] [log] [blame]
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<artifactId>dltk</artifactId>
<version>1.0.0-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
<groupId>org.eclipse.dltk</groupId>
</parent>
<groupId>org.eclipse.dltk.tests</groupId>
<artifactId>org.eclipse.dltk.product</artifactId>
<version>4.0.0-SNAPSHOT</version>
<packaging>eclipse-repository</packaging>
<dependencies>
<dependency>
<groupId>org.eclipse.dltk.core</groupId>
<artifactId>update.site</artifactId>
<version>1.0.0-SNAPSHOT</version>
<type>pom</type>
</dependency>
</dependencies>
<repositories>
<repository>
<snapshots>
<updatePolicy>always</updatePolicy>
</snapshots>
<id>q7-repository</id>
<layout>p2</layout>
<url>${project.baseUri}../update.site/target/site</url>
</repository>
</repositories>
<build>
<plugins>
<plugin>
<groupId>${tycho-groupid}</groupId>
<artifactId>target-platform-configuration</artifactId>
<version>${tycho-version}</version>
<configuration>
<resolver>p2</resolver>
<!--ignoreTychoRepositories>true</ignoreTychoRepositories -->
<environments>
<!-- <environment> <os>win32</os> <ws>win32</ws> <arch>x86</arch> </environment>
<environment> <os>win32</os> <ws>win32</ws> <arch>x86_64</arch> </environment> -->
<environment>
<os>linux</os>
<ws>gtk</ws>
<arch>x86</arch>
</environment>
<environment>
<os>linux</os>
<ws>gtk</ws>
<arch>x86_64</arch>
</environment>
</environments>
</configuration>
</plugin>
<plugin>
<groupId>${tycho-groupid}</groupId>
<artifactId>tycho-p2-director-plugin</artifactId>
<version>${tycho-version}</version>
<executions>
<execution>
<id>materialize-products</id>
<goals>
<goal>materialize-products</goal>
</goals>
</execution>
<execution>
<id>archive-products</id>
<goals>
<goal>archive-products</goal>
</goals>
</execution>
</executions>
<configuration>
<products>
<product>
<id>org.eclipse.dltk.product</id>
<rootFolder>dltk</rootFolder>
</product>
</products>
</configuration>
</plugin>
</plugins>
</build>
</project>