1 <?xml version="1.0" encoding="UTF-8"?> 2 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 3 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> 4 <modelVersion>4.0.0</modelVersion> 5 6 <version>24.3.3-SNAPSHOT</version> 7 <artifactId>bundles</artifactId> 8 <packaging>eclipse-repository</packaging> 9 <name>bundles</name> 10 11 <parent> 12 <relativePath>../../pom.xml</relativePath> 13 <groupId>adt.group</groupId> 14 <artifactId>parent</artifactId> 15 <version>1.0.0-SNAPSHOT</version> 16 </parent> 17 18 <build> 19 <plugins> 20 <plugin> 21 <groupId>org.eclipse.tycho</groupId> 22 <artifactId>tycho-p2-director-plugin</artifactId> 23 <version>${tycho-version}</version> 24 <executions> 25 <!-- install the product for all configured os/ws/arch environments 26 using p2 director --> 27 <execution> 28 <id>materialize-products</id> 29 <goals> 30 <goal>materialize-products</goal> 31 </goals> 32 </execution> 33 <!-- create product zips (one per os/ws/arch) --> 34 <execution> 35 <id>archive-products</id> 36 <goals> 37 <goal>archive-products</goal> 38 </goals> 39 </execution> 40 </executions> 41 <configuration> 42 <formats> 43 <win32>zip</win32> 44 <linux>zip</linux> 45 <macosx>zip</macosx> 46 </formats> 47 <products> 48 <product> 49 <id>monitorproduct</id> 50 <attachId>com.android.ide.eclipse.monitor.product</attachId> 51 <rootFolder>monitor</rootFolder> 52 </product> 53 </products> 54 </configuration> 55 </plugin> 56 </plugins> 57 </build> 58 </project> 59