blob: ee8e9a04d199bb8abb7d2467605c6338d7f14692 [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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<name>Tyhco Distribution</name>
<parent>
<artifactId>tycho</artifactId>
<groupId>org.codehaus.tycho</groupId>
<version>0.3.0-SNAPSHOT</version>
</parent>
<artifactId>tycho-distribution</artifactId>
<packaging>pom</packaging>
<dependencies>
<dependency>
<groupId>org.codehaus.tycho</groupId>
<artifactId>tycho-osgi-components</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.eclipse</groupId>
<artifactId>org.eclipse.osgi</artifactId>
</dependency>
<dependency>
<groupId>org.codehaus.tycho</groupId>
<artifactId>maven-osgi-compiler-plugin</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.codehaus.tycho</groupId>
<artifactId>maven-osgi-lifecycle-plugin</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.codehaus.tycho</groupId>
<artifactId>maven-osgi-packaging-plugin</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.codehaus.tycho</groupId>
<artifactId>tycho-temp-p2-runtime</artifactId>
<version>${project.version}</version>
<type>zip</type>
</dependency>
<dependency>
<groupId>org.codehaus.tycho</groupId>
<artifactId>tycho-temp-p2-app</artifactId>
<version>${project.version}</version>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<artifactId>maven-dependency-plugin</artifactId>
<executions>
<execution>
<configuration>
<outputAbsoluteArtifactFilename>true</outputAbsoluteArtifactFilename>
<artifactItems>
<artifactItem>
<groupId>org.apache.maven</groupId>
<artifactId>maven-distribution</artifactId>
<version>${maven-version}</version>
<classifier>bin</classifier>
<type>tar.gz</type>
</artifactItem>
<artifactItem>
<groupId>org.codehaus.tycho</groupId>
<artifactId>tycho-temp-p2-runtime</artifactId>
<version>${project.version}</version>
<type>zip</type>
</artifactItem>
</artifactItems>
</configuration>
<phase>process-sources</phase>
<goals>
<goal>unpack</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<version>2.2-beta-1</version>
<executions>
<execution>
<id>create-distro</id>
<phase>process-sources</phase>
<goals>
<goal>single</goal>
</goals>
<configuration>
<descriptor>src/main/assembly/bin.xml</descriptor>
<outputDirectory>target</outputDirectory>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>