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 | --> |
| 12 | |
| 13 | <project |
| 14 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" |
| 15 | xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> |
| 16 | <modelVersion>4.0.0</modelVersion> |
| 17 | <parent> |
| 18 | <artifactId>rt.equinox.bundles</artifactId> |
| 19 | <groupId>org.eclipse.equinox.bundles</groupId> |
| 20 | <version>3.8.0-SNAPSHOT</version> |
| 21 | <relativePath>../../</relativePath> |
| 22 | </parent> |
Thomas Watson | 55c8997 | 2013-02-25 11:02:24 -0600 | [diff] [blame^] | 23 | <groupId>org.eclipse.equinox</groupId> |
Thomas Watson | 0c5882c | 2012-05-22 13:41:26 -0500 | [diff] [blame] | 24 | <artifactId>org.eclipse.equinox.security.win32.x86_64</artifactId> |
Thomas Watson | edc3a54 | 2012-05-22 15:49:34 -0500 | [diff] [blame] | 25 | <version>1.0.100-SNAPSHOT</version> |
Thomas Watson | 0c5882c | 2012-05-22 13:41:26 -0500 | [diff] [blame] | 26 | <packaging>eclipse-plugin</packaging> |
| 27 | |
| 28 | <build> |
| 29 | <plugins> |
| 30 | <plugin> |
| 31 | <groupId>org.eclipse.tycho</groupId> |
| 32 | <artifactId>target-platform-configuration</artifactId> |
| 33 | <version>${tycho.version}</version> |
| 34 | <configuration> |
| 35 | <resolver>p2</resolver> |
| 36 | <environments> |
| 37 | <environment> |
| 38 | <os>win32</os> |
| 39 | <ws>win32</ws> |
| 40 | <arch>x86_64</arch> |
| 41 | </environment> |
| 42 | </environments> |
| 43 | </configuration> |
| 44 | </plugin> |
| 45 | </plugins> |
| 46 | </build> |
| 47 | </project> |