46 lines
1.4 KiB
XML
46 lines
1.4 KiB
XML
<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.idempiere</groupId>
|
|
<artifactId>org.idempiere.parent</artifactId>
|
|
<version>5.1.0-SNAPSHOT</version>
|
|
<relativePath>../org.idempiere.parent/pom.xml</relativePath>
|
|
</parent>
|
|
<artifactId>org.idempiere.p2</artifactId>
|
|
<packaging>eclipse-repository</packaging>
|
|
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.eclipse.tycho</groupId>
|
|
<artifactId>tycho-p2-director-plugin</artifactId>
|
|
<executions>
|
|
<execution>
|
|
<!-- install the product using the p2 director -->
|
|
<id>materialize-products</id>
|
|
<goals>
|
|
<goal>materialize-products</goal>
|
|
</goals>
|
|
</execution>
|
|
<execution>
|
|
<!-- create zip file with the installed product -->
|
|
<id>archive-products</id>
|
|
<goals>
|
|
<goal>archive-products</goal>
|
|
</goals>
|
|
</execution>
|
|
</executions>
|
|
<configuration>
|
|
<products>
|
|
<product>
|
|
<!-- The uid in the .product file, NOT the name of the .product file -->
|
|
<id>org.adempiere.server.product</id>
|
|
<archiveFileName>idempiere-server-${unqualifiedVersion}-${buildQualifier}</archiveFileName>
|
|
</product>
|
|
</products>
|
|
</configuration>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
</project> |