blob: d75379619c8cfb5ad253f694d0d2fc763296611e [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>
<groupId>org.eclipse.orbit.bundles</groupId>
<artifactId>releng-parent</artifactId>
<version>1.0.0-SNAPSHOT</version>
</parent>
<artifactId>orbit-bundles-p2-repository</artifactId>
<version>1.0.0-SNAPSHOT</version>
<packaging>eclipse-repository</packaging>
<name>Eclipse Orbit :: P2 Repository</name>
<build>
<plugins>
<plugin>
<groupId>org.eclipse.tycho</groupId>
<artifactId>tycho-p2-repository-plugin</artifactId>
<configuration>
<repositoryName>Orbit Repository (Build ${buildLabel})</repositoryName>
<finalName>orbit-${buildId}-repo</finalName>
</configuration>
</plugin>
<plugin>
<groupId>org.eclipse.tycho</groupId>
<artifactId>target-platform-configuration</artifactId>
<configuration>
<environments>
<environment>
<os>win32</os>
<ws>*</ws>
<arch>*</arch>
</environment>
<environment>
<os>*</os>
<ws>*</ws>
<arch>*</arch>
</environment>
</environments>
<includePackedArtifacts>true</includePackedArtifacts>
</configuration>
</plugin>
</plugins>
</build>
</project>