| <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> |
| <artifactId>org.eclipse.bpmn2.modeler.parent</artifactId> |
| <groupId>org.eclipse.bpmn2.modeler</groupId> |
| <version>0.0.1-SNAPSHOT</version> |
| </parent> |
| |
| <groupId>org.eclipse.bpmn2.modeler</groupId> |
| <artifactId>org.eclipse.bpmn2.modeler.updatesite.feature</artifactId> |
| <version>0.0.1-SNAPSHOT</version> |
| <packaging>eclipse-update-site</packaging> |
| <name>BPMN2 Modeler Update Site</name> |
| <description>Update Site feature for BPMN2 Modeler</description> |
| <properties> |
| <maven.antrun.plugin.version>1.3</maven.antrun.plugin.version> |
| </properties> |
| |
| <build> |
| <plugins> |
| <plugin> |
| <groupId>org.eclipse.tycho</groupId> |
| <artifactId>tycho-packaging-plugin</artifactId> |
| <version>${tycho-version}</version> |
| <configuration> |
| <format>'v'yyyyMMdd-HHmm</format> |
| <archiveSite>true</archiveSite> |
| <environments> |
| <environment> |
| <os>macosx</os> |
| <ws>cocoa</ws> |
| <arch>x86</arch> |
| </environment> |
| <environment> |
| <os>win32</os> |
| <ws>win32</ws> |
| <arch>x86</arch> |
| </environment> |
| <environment> |
| <os>linux</os> |
| <ws>gtk</ws> |
| <arch>x86</arch> |
| </environment> |
| <environment> |
| <os>linux</os> |
| <ws>gtk</ws> |
| <arch>x86_64</arch> |
| </environment> |
| </environments> |
| </configuration> |
| </plugin> |
| <plugin> |
| <groupId>org.apache.maven.plugins</groupId> |
| <artifactId>maven-antrun-plugin</artifactId> |
| <version>${maven.antrun.plugin.version}</version> |
| <executions> |
| <execution> |
| <id>install</id> |
| <phase>install</phase> |
| <configuration> |
| <quiet>true</quiet> |
| <tasks> |
| <!-- called AFTER generating update site + zip to add in extra content --> |
| <ant antfile="build.xml"> |
| </ant> |
| </tasks> |
| </configuration> |
| <goals> |
| <goal>run</goal> |
| </goals> |
| </execution> |
| </executions> |
| <dependencies> |
| <dependency> |
| <groupId>commons-net</groupId> |
| <artifactId>commons-net</artifactId> |
| <version>1.4.1</version> |
| </dependency> |
| <dependency> |
| <groupId>org.apache.ant</groupId> |
| <artifactId>ant</artifactId> |
| <version>1.7.1</version> |
| </dependency> |
| <dependency> |
| <groupId>org.apache.ant</groupId> |
| <artifactId>ant-nodeps</artifactId> |
| <version>1.7.1</version> |
| </dependency> |
| <dependency> |
| <groupId>org.apache.ant</groupId> |
| <artifactId>ant-trax</artifactId> |
| <version>1.7.1</version> |
| </dependency> |
| <dependency> |
| <groupId>org.apache.ant</groupId> |
| <artifactId>ant-commons-net</artifactId> |
| <version>1.7.1</version> |
| </dependency> |
| <dependency> |
| <groupId>org.apache.ant</groupId> |
| <artifactId>ant-apache-regexp</artifactId> |
| <version>1.7.1</version> |
| </dependency> |
| <dependency> |
| <groupId>ant-contrib</groupId> |
| <artifactId>ant-contrib</artifactId> |
| <version>1.0b3</version> |
| </dependency> |
| </dependencies> |
| </plugin> |
| </plugins> |
| </build> |
| </project> |