Julien HENRY | 2113ebe | 2017-04-14 11:08:29 +0200 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
| 2 | <!-- |
Jeff Johnston | fdebce6 | 2021-01-12 17:57:54 -0500 | [diff] [blame] | 3 | Copyright (c) 2017, 2021 Eclipse Foundation. |
Julien HENRY | 2113ebe | 2017-04-14 11:08:29 +0200 | [diff] [blame] | 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 |
Jeff Johnston | fdebce6 | 2021-01-12 17:57:54 -0500 | [diff] [blame] | 11 | Red Hat Inc. - Replace Linux implementation with JNA version |
Julien HENRY | 2113ebe | 2017-04-14 11:08:29 +0200 | [diff] [blame] | 12 | --> |
| 13 | <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"> |
| 14 | <modelVersion>4.0.0</modelVersion> |
| 15 | <parent> |
| 16 | <artifactId>rt.equinox.bundles</artifactId> |
| 17 | <groupId>org.eclipse.equinox.bundles</groupId> |
Sravan Kumar Lakkimsetti | 33ee21b | 2020-12-02 00:15:38 +0530 | [diff] [blame] | 18 | <version>4.19.0-SNAPSHOT</version> |
Julien HENRY | 2113ebe | 2017-04-14 11:08:29 +0200 | [diff] [blame] | 19 | <relativePath>../../</relativePath> |
| 20 | </parent> |
| 21 | <groupId>org.eclipse.equinox</groupId> |
| 22 | <artifactId>org.eclipse.equinox.security.linux.x86_64</artifactId> |
Jeff Johnston | fdebce6 | 2021-01-12 17:57:54 -0500 | [diff] [blame] | 23 | <version>1.1.500-SNAPSHOT</version> |
Julien HENRY | 2113ebe | 2017-04-14 11:08:29 +0200 | [diff] [blame] | 24 | <packaging>eclipse-plugin</packaging> |
| 25 | |
Mickael Istria | b1ecd00 | 2019-06-20 15:37:04 +0200 | [diff] [blame] | 26 | <properties> |
| 27 | <skipAPIAnalysis>true</skipAPIAnalysis> |
| 28 | </properties> |
| 29 | |
Mickael Istria | 31a6790 | 2021-02-08 11:35:12 +0100 | [diff] [blame^] | 30 | <build> |
| 31 | <plugins> |
| 32 | <plugin> |
| 33 | <groupId>org.eclipse.tycho</groupId> |
| 34 | <artifactId>target-platform-configuration</artifactId> |
| 35 | <configuration> |
| 36 | <dependency-resolution> |
| 37 | <extraRequirements> |
| 38 | <requirement> |
| 39 | <!-- workaround usage of split package https://bugs.eclipse.org/bugs/show_bug.cgi?id=403196 --> |
| 40 | <id>org.eclipse.equinox.registry</id> |
| 41 | <versionRange>0.0.0</versionRange> |
| 42 | <type>p2-installable-unit</type> |
| 43 | </requirement> |
| 44 | </extraRequirements> |
| 45 | </dependency-resolution> |
| 46 | </configuration> |
| 47 | </plugin> |
| 48 | </plugins> |
| 49 | </build> |
Jeff Johnston | fdebce6 | 2021-01-12 17:57:54 -0500 | [diff] [blame] | 50 | </project> |