Thomas Watson | 0c5882c | 2012-05-22 13:41:26 -0500 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
| 2 | <!-- |
| 3 | Copyright (c) 2012 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 | Igor Fedorenko - initial implementation |
| 11 | --> |
Thomas Watson | 8b767d4 | 2013-03-27 09:42:24 -0500 | [diff] [blame] | 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"> |
Thomas Watson | 0c5882c | 2012-05-22 13:41:26 -0500 | [diff] [blame] | 13 | <modelVersion>4.0.0</modelVersion> |
| 14 | <parent> |
| 15 | <artifactId>rt.equinox.bundles</artifactId> |
| 16 | <groupId>org.eclipse.equinox.bundles</groupId> |
Niraj Modi | ae08404 | 2019-03-08 14:53:14 +0530 | [diff] [blame^] | 17 | <version>4.12.0-SNAPSHOT</version> |
Thomas Watson | 0c5882c | 2012-05-22 13:41:26 -0500 | [diff] [blame] | 18 | <relativePath>../../</relativePath> |
| 19 | </parent> |
Thomas Watson | 55c8997 | 2013-02-25 11:02:24 -0600 | [diff] [blame] | 20 | <groupId>org.eclipse.equinox</groupId> |
Thomas Watson | 0c5882c | 2012-05-22 13:41:26 -0500 | [diff] [blame] | 21 | <artifactId>org.eclipse.equinox.security</artifactId> |
jbogdahn | 88ccf54 | 2018-11-12 13:15:31 +0100 | [diff] [blame] | 22 | <version>1.3.100-SNAPSHOT</version> |
Thomas Watson | 0c5882c | 2012-05-22 13:41:26 -0500 | [diff] [blame] | 23 | <packaging>eclipse-plugin</packaging> |
| 24 | |
| 25 | <build> |
| 26 | <plugins> |
| 27 | <plugin> |
| 28 | <groupId>org.eclipse.tycho</groupId> |
| 29 | <artifactId>target-platform-configuration</artifactId> |
| 30 | <configuration> |
| 31 | <dependency-resolution> |
| 32 | <extraRequirements> |
| 33 | <!-- |
| 34 | Help Tycho (p2 actually) deal with split packages |
| 35 | org.eclipse.core.internal.runtime;common=split |
| 36 | org.eclipse.core.runtime;registry=split |
| 37 | --> |
| 38 | <requirement> |
| 39 | <type>eclipse-plugin</type> |
| 40 | <id>org.eclipse.equinox.common</id> |
| 41 | <versionRange>0.0.0</versionRange> |
| 42 | </requirement> |
| 43 | <requirement> |
| 44 | <type>eclipse-plugin</type> |
| 45 | <id>org.eclipse.equinox.registry</id> |
| 46 | <versionRange>0.0.0</versionRange> |
| 47 | </requirement> |
| 48 | </extraRequirements> |
| 49 | </dependency-resolution> |
| 50 | </configuration> |
| 51 | </plugin> |
| 52 | </plugins> |
| 53 | </build> |
| 54 | |
| 55 | </project> |