| <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.ote</groupId> | |
| <artifactId>org.eclipse.ote.parent</artifactId> | |
| <version>0.26.3-SNAPSHOT</version> | |
| <relativePath>../org.eclipse.ote.parent</relativePath> | |
| </parent> | |
| <artifactId>org.eclipse.ote.p2</artifactId> | |
| <packaging>eclipse-repository</packaging> | |
| <name>Eclipse OTE P2 Site </name> | |
| <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> |