| <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 POM (i.e., the one owned by the releng folder) --> | |
| <parent> | |
| <groupId>org.eclipse.papyrus.moka</groupId> | |
| <artifactId>org.eclipse.papyrus.moka.products</artifactId> | |
| <version>2.0.100-SNAPSHOT</version> | |
| </parent> | |
| <!-- POM Description --> | |
| <artifactId>org.eclipse.papyrus.moka.standalone.product</artifactId> | |
| <name>Moka Standalone (CLI mode)</name> | |
| <packaging>eclipse-repository</packaging> | |
| <version>2.0.0-SNAPSHOT</version> | |
| <build> | |
| <plugins> | |
| <plugin> | |
| <groupId>org.eclipse.tycho</groupId> | |
| <artifactId>tycho-p2-director-plugin</artifactId> | |
| <executions> | |
| <execution> | |
| <id>materialize-products</id> | |
| <goals> | |
| <goal>materialize-products</goal> | |
| </goals> | |
| </execution> | |
| <execution> | |
| <id>archive-products</id> | |
| <goals> | |
| <goal>archive-products</goal> | |
| </goals> | |
| </execution> | |
| </executions> | |
| </plugin> | |
| </plugins> | |
| </build> | |
| </project> |