| <?xml version="1.0" encoding="UTF-8"?> |
| <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/maven-v4_0_0.xsd"> |
| <modelVersion>4.0.0</modelVersion> |
| |
| <!-- PROJECT DESCRIPTION --> |
| <groupId>org.polarsys.esf</groupId> |
| <artifactId>esf-infra</artifactId> |
| <version>0.7.0-SNAPSHOT</version> |
| <packaging>pom</packaging> |
| <name>ESF</name> |
| <description>ESF description.</description> |
| |
| <!-- DEVELOPERS --> |
| <developers> |
| <developer> |
| <id>JOD</id> |
| <name>Jonathan Dumont</name> |
| <email>jonathan.dumont@all4tec.net</email> |
| <organization>ALL4TEC</organization> |
| <organizationUrl>http://www.all4tec.net/</organizationUrl> |
| <roles> |
| <role>Project leader</role> |
| </roles> |
| <timezone>+1</timezone> |
| </developer> |
| |
| <developer> |
| <id>YUM</id> |
| <name>Yupanqui Munoz Julho</name> |
| <email>yupanqui.munozjulho@cea.fr</email> |
| <organization>CEA List</organization> |
| <organizationUrl>www-list.cea.fr/</organizationUrl> |
| <roles> |
| <role>Project leader</role> |
| </roles> |
| <timezone>+1</timezone> |
| </developer> |
| </developers> |
| |
| <!-- MODULES --> |
| <modules> |
| <module>core</module> |
| <module>p2</module> |
| </modules> |
| |
| <!-- REPOSITORIES --> |
| <repositories> |
| <repository> |
| <id>eclipse-mars</id> |
| <layout>p2</layout> |
| <url>http://download.eclipse.org/releases/mars</url> |
| </repository> |
| </repositories> |
| |
| <!-- BUILD DEFINITION --> |
| <build> |
| <plugins> |
| |
| <!-- Tycho plugin --> |
| <!-- This is the part which modify default packaging to add those specific to Eclipse RCP --> |
| <plugin> |
| <groupId>org.eclipse.tycho</groupId> |
| <artifactId>tycho-maven-plugin</artifactId> |
| <version>${tycho-version}</version> |
| <extensions>true</extensions> |
| </plugin> |
| |
| <!-- Tycho target platform configuration --> |
| <plugin> |
| <groupId>org.eclipse.tycho</groupId> |
| <artifactId>target-platform-configuration</artifactId> |
| <version>${tycho-version}</version> |
| <configuration> |
| <resolver>p2</resolver> |
| <environments> |
| <environment> |
| <os>win32</os> |
| <ws>win32</ws> |
| <arch>x86_64</arch> |
| </environment> |
| </environments> |
| </configuration> |
| </plugin> |
| |
| <!-- Plugin used to manage the versionning of tycho artifacts --> |
| <plugin> |
| <groupId>org.eclipse.tycho</groupId> |
| <artifactId>tycho-versions-plugin</artifactId> |
| <version>${tycho-version}</version> |
| </plugin> |
| |
| </plugins> |
| </build> |
| |
| <!-- PROPERTIES --> |
| <properties> |
| |
| <product.version>0.7.0</product.version> |
| |
| <!-- Tycho plugin version --> |
| <tycho-version>0.22.0</tycho-version> |
| |
| <!-- Enforce used of UTF encoding is mandatory. Otherwise, default platform encoding is used, and some issues appears with differents os constructions --> |
| <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
| </properties> |
| |
| </project> |