blob: 32ec9b60e309cfa189b3906ba3c299e66b7265a1 [file] [log] [blame]
<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>
<parent>
<groupId>org.eclipse.osee</groupId>
<artifactId>org.eclipse.osee.ote.parent</artifactId>
<version>0.25.3-SNAPSHOT</version>
<relativePath>../org.eclipse.osee.ote.parent</relativePath>
</parent>
<artifactId>org.eclipse.osee.ote.p2</artifactId>
<packaging>eclipse-repository</packaging>
<name>OSEE OTE - p2 Site (Incubation)</name>
<version>0.25.3-SNAPSHOT</version>
<build>
<plugins>
<plugin>
<groupId>org.eclipse.tycho</groupId>
<artifactId>tycho-p2-repository-plugin</artifactId>
<version>${tycho-version}</version>
<configuration>
<includeAllDependencies>true</includeAllDependencies>
</configuration>
<executions>
<execution>
<id>assemble-repository</id>
<goals>
<goal>assemble-repository</goal>
</goals>
</execution>
<execution>
<id>archive-repository</id>
<phase>pre-integration-test</phase>
<goals>
<goal>archive-repository</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-antrun-plugin</artifactId>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>run</goal>
</goals>
<configuration>
<tasks name="generate">
<taskdef resource="net/sf/antcontrib/antlib.xml" />
<if>
<available file="version.xml" />
<then>
<ant antfile="version.xml" />
</then>
</if>
</tasks>
</configuration>
</execution>
</executions>
<dependencies>
<dependency>
<groupId>ant-contrib</groupId>
<artifactId>ant-contrib</artifactId>
<version>1.0b3</version>
<exclusions>
<exclusion>
<groupId>ant</groupId>
<artifactId>ant</artifactId>
</exclusion>
</exclusions>
</dependency>
</dependencies>
</plugin>
</plugins>
</build>
<!-- <build>
<plugins>
<plugin>
<groupId>org.eclipse.tycho</groupId>
<artifactId>tycho-p2-repository-plugin</artifactId>
<version>${tycho-version}</version>
<configuration>
<includeAllDependencies>true</includeAllDependencies>
</configuration>
</plugin>
</plugins>
</build> -->
</project>