| <?xml version="1.0" encoding="UTF-8"?> |
| <!--#======================================================================= --> |
| <!--# Copyright (c) 2011, 2016 - Loetz GmbH&Co.KG (69115 Heidelberg, Germany). --> |
| <!--# All rights reserved. This program and the accompanying materials --> |
| <!--# are made available under the terms of the Eclipse Public License v1.0 --> |
| <!--# which accompanies this distribution, and is available at --> |
| <!--# http://www.eclipse.org/legal/epl-v10.html --> |
| <!--# --> |
| <!--# Contributors: --> |
| <!--# Christophe Loetz (Loetz GmbH&Co.KG) - Initial implementation API and implementation --> |
| <!--#======================================================================= --> |
| <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.osbp.technologystack</groupId> |
| <artifactId>org.eclipse.osbp.technologystack</artifactId> |
| <version>0.9.0-SNAPSHOT</version> |
| </parent> |
| |
| <artifactId>org.eclipse.osbp.technologystack.target.p2</artifactId> |
| <packaging>eclipse-repository</packaging> |
| |
| <properties> |
| |
| </properties> |
| |
| <profiles> |
| <profile> |
| <id>build.p2</id> |
| <activation> |
| <property> |
| <name>!osbp.skip.build.p2</name> |
| </property> |
| </activation> |
| <properties> |
| <osbp.deployment.p2.origin.dir>${project.build.directory}${file.separator}repository</osbp.deployment.p2.origin.dir> |
| <associate.p2> |
| </associate.p2> |
| </properties> |
| <build> |
| <plugins> |
| <plugin> |
| <artifactId>maven-antrun-plugin</artifactId> |
| <executions> |
| <execution> |
| <id>create.p2.inf</id> |
| <phase>package</phase> |
| <configuration> |
| <quiet>true</quiet> |
| <target> |
| <ant antfile="build.xml" target="basic.build" dir="."> |
| <property name="osbp.deployment.p2.origin.dir" value="${osbp.deployment.p2.origin.dir}"/> |
| <property name="associate.sites" value="${associate.p2}"/> |
| </ant> |
| </target> |
| </configuration> |
| <goals> |
| <goal>run</goal> |
| </goals> |
| </execution> |
| </executions> |
| <dependencies> |
| <dependency> |
| <groupId>org.apache.ant</groupId> |
| <artifactId>ant</artifactId> |
| <version>${ant-version}</version> |
| </dependency> |
| <dependency> |
| <groupId>ant-contrib</groupId> |
| <artifactId>ant-contrib</artifactId> |
| <version>1.0b3</version> |
| <exclusions> |
| <exclusion> |
| <groupId>ant</groupId> |
| <artifactId>ant</artifactId> |
| </exclusion> |
| </exclusions> |
| </dependency> |
| <dependency> |
| <groupId>net.sf.saxon</groupId> |
| <artifactId>Saxon-HE</artifactId> |
| <version>9.4</version> |
| </dependency> |
| </dependencies> |
| </plugin> |
| </plugins> |
| </build> |
| </profile> |
| </profiles> |
| |
| <dependencies> |
| <dependency> |
| <groupId>org.eclipse.osbp.technologystack</groupId> |
| <artifactId>org.eclipse.osbp.technologystack.target.feature</artifactId> |
| <version>0.9.0-SNAPSHOT</version> |
| <type>eclipse-feature</type> |
| <scope>provided</scope> |
| </dependency> |
| <dependency> |
| <groupId>org.eclipse.xtend</groupId> |
| <artifactId>org.eclipse.xtend.lib</artifactId> |
| <version>2.7.3</version> |
| </dependency> |
| </dependencies> |
| </project> |