Julien HENRY | 2113ebe | 2017-04-14 11:08:29 +0200 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
| 2 | <!-- |
| 3 | Copyright (c) 2017 Eclipse Foundation. |
| 4 | All rights reserved. This program and the accompanying materials |
| 5 | are made available under the terms of the Eclipse Distribution License v1.0 |
| 6 | which accompanies this distribution, and is available at |
| 7 | http://www.eclipse.org/org/documents/edl-v10.php |
| 8 | |
| 9 | Contributors: |
| 10 | Julien HENRY - Linux implementation |
| 11 | --> |
| 12 | <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"> |
| 13 | <modelVersion>4.0.0</modelVersion> |
| 14 | <parent> |
| 15 | <artifactId>rt.equinox.bundles</artifactId> |
| 16 | <groupId>org.eclipse.equinox.bundles</groupId> |
Niraj Modi | 2198f07 | 2019-06-07 13:59:14 +0530 | [diff] [blame] | 17 | <version>4.13.0-SNAPSHOT</version> |
Julien HENRY | 2113ebe | 2017-04-14 11:08:29 +0200 | [diff] [blame] | 18 | <relativePath>../../</relativePath> |
| 19 | </parent> |
| 20 | <groupId>org.eclipse.equinox</groupId> |
| 21 | <artifactId>org.eclipse.equinox.security.linux.x86_64</artifactId> |
Jeff Johnston | a3b4372 | 2018-09-14 14:15:41 -0400 | [diff] [blame] | 22 | <version>1.1.200-SNAPSHOT</version> |
Julien HENRY | 2113ebe | 2017-04-14 11:08:29 +0200 | [diff] [blame] | 23 | <packaging>eclipse-plugin</packaging> |
| 24 | |
Mickael Istria | b1ecd00 | 2019-06-20 15:37:04 +0200 | [diff] [blame^] | 25 | <properties> |
| 26 | <skipAPIAnalysis>true</skipAPIAnalysis> |
| 27 | </properties> |
| 28 | |
Julien HENRY | 2113ebe | 2017-04-14 11:08:29 +0200 | [diff] [blame] | 29 | <build> |
| 30 | <plugins> |
| 31 | <plugin> |
| 32 | <groupId>org.eclipse.tycho</groupId> |
| 33 | <artifactId>target-platform-configuration</artifactId> |
Julien HENRY | 2113ebe | 2017-04-14 11:08:29 +0200 | [diff] [blame] | 34 | <configuration> |
| 35 | <resolver>p2</resolver> |
| 36 | <environments> |
| 37 | <environment> |
| 38 | <os>linux</os> |
| 39 | <ws>gtk</ws> |
| 40 | <arch>x86_64</arch> |
| 41 | </environment> |
| 42 | </environments> |
| 43 | </configuration> |
| 44 | </plugin> |
| 45 | </plugins> |
| 46 | </build> |
Alexander Kurtakov | 2712e8b | 2017-04-25 14:48:00 +0300 | [diff] [blame] | 47 | <profiles> |
| 48 | <profile> |
| 49 | <id>build-natives</id> |
| 50 | <activation> |
| 51 | <property> |
| 52 | <!-- This has to be hardcoded. Profiles are not allowed to use pom defined properties :-( --> |
| 53 | <name>native</name> |
| 54 | <value>gtk.linux.x86_64</value> |
| 55 | </property> |
| 56 | </activation> |
| 57 | <build> |
| 58 | <plugins> |
| 59 | <plugin> |
| 60 | <artifactId>maven-antrun-plugin</artifactId> |
| 61 | <executions> |
| 62 | <execution> |
| 63 | <id>natives</id> |
| 64 | <phase>process-resources</phase> |
| 65 | <configuration> |
| 66 | <target> |
| 67 | <exec executable="make" newenvironment="false" dir="keystorelinuxnative/"/> |
| 68 | </target> |
| 69 | </configuration> |
| 70 | <goals> |
| 71 | <goal>run</goal> |
| 72 | </goals> |
| 73 | </execution> |
| 74 | </executions> |
| 75 | </plugin> |
| 76 | </plugins> |
| 77 | </build> |
| 78 | </profile> |
| 79 | </profiles> |
Julien HENRY | 2113ebe | 2017-04-14 11:08:29 +0200 | [diff] [blame] | 80 | </project> |