blob: 0a08b980ee88e6ae82eed915ce2c5b105df83ebb [file] [log] [blame]
Julien HENRY2113ebe2017-04-14 11:08:29 +02001<?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 Modi2198f072019-06-07 13:59:14 +053017 <version>4.13.0-SNAPSHOT</version>
Julien HENRY2113ebe2017-04-14 11:08:29 +020018 <relativePath>../../</relativePath>
19 </parent>
20 <groupId>org.eclipse.equinox</groupId>
21 <artifactId>org.eclipse.equinox.security.linux.x86_64</artifactId>
Jeff Johnstona3b43722018-09-14 14:15:41 -040022 <version>1.1.200-SNAPSHOT</version>
Julien HENRY2113ebe2017-04-14 11:08:29 +020023 <packaging>eclipse-plugin</packaging>
24
Mickael Istriab1ecd002019-06-20 15:37:04 +020025 <properties>
26 <skipAPIAnalysis>true</skipAPIAnalysis>
27 </properties>
28
Julien HENRY2113ebe2017-04-14 11:08:29 +020029 <build>
30 <plugins>
31 <plugin>
32 <groupId>org.eclipse.tycho</groupId>
33 <artifactId>target-platform-configuration</artifactId>
Julien HENRY2113ebe2017-04-14 11:08:29 +020034 <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 Kurtakov2712e8b2017-04-25 14:48:00 +030047 <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 HENRY2113ebe2017-04-14 11:08:29 +020080</project>