Céline Janssens | 043236e | 2015-10-14 17:32:48 +0200 | [diff] [blame] | 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 | <parent> |
| 6 | <groupId>org.eclipse.papyrusrt</groupId> |
| 7 | <artifactId>org.eclipse.papyrusrt.releng</artifactId> |
Remi Schnekenburger | 7ceaf45 | 2015-12-14 13:46:15 +0100 | [diff] [blame] | 8 | <version>0.7.2-SNAPSHOT</version> |
Céline Janssens | 043236e | 2015-10-14 17:32:48 +0200 | [diff] [blame] | 9 | </parent> |
| 10 | <artifactId>org.eclipse.papyrusrt.product</artifactId> |
| 11 | <packaging>eclipse-repository</packaging> |
| 12 | <properties> |
| 13 | <product-id>org.eclipse.papyrusrt.product</product-id> |
| 14 | </properties> |
| 15 | <repositories> |
| 16 | |
| 17 | <!-- Repository create from tp --> |
| 18 | <repository> |
| 19 | <id>repo-papyrus-mars</id> |
| 20 | <layout>p2</layout> |
| 21 | <url>http://download.eclipse.org/modeling/mdt/papyrus/updates/nightly/mars/main/</url> |
| 22 | </repository> |
| 23 | |
| 24 | </repositories> |
| 25 | <build> |
| 26 | <plugins> |
| 27 | <plugin> |
| 28 | <groupId>org.eclipse.tycho</groupId> |
| 29 | <artifactId>tycho-p2-repository-plugin</artifactId> |
| 30 | <configuration> |
| 31 | <includeAllDependencies>true</includeAllDependencies> |
| 32 | </configuration> |
| 33 | </plugin> |
| 34 | <plugin> |
| 35 | <groupId>org.eclipse.tycho</groupId> |
| 36 | <artifactId>tycho-p2-director-plugin</artifactId> |
| 37 | <configuration> |
| 38 | <profile>org.eclipse.papyrusrt</profile> |
| 39 | <formats> |
| 40 | <linux>zip</linux> |
| 41 | <macosx>tar.gz</macosx> |
| 42 | </formats> |
| 43 | <products> |
| 44 | <product> |
| 45 | <id>${product-id}</id> |
| 46 | <rootFolder>papyrusRT</rootFolder> |
| 47 | </product> |
| 48 | </products> |
| 49 | </configuration> |
| 50 | <executions> |
| 51 | <execution> |
| 52 | <id>materialize-products</id> |
| 53 | <goals> |
| 54 | <goal>materialize-products</goal> |
| 55 | </goals> |
| 56 | </execution> |
| 57 | <execution> |
| 58 | <id>archive-products</id> |
| 59 | <goals> |
| 60 | <goal>archive-products</goal> |
| 61 | </goals> |
| 62 | </execution> |
| 63 | </executions> |
| 64 | </plugin> |
| 65 | </plugins> |
| 66 | </build> |
| 67 | </project> |