blob: 02dbd98fbde780d30780b9fc730c4daf7e5c36d4 [file] [log] [blame]
Thomas Watson0c5882c2012-05-22 13:41:26 -05001<?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 Watson8b767d42013-03-27 09:42:24 -050012<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 Watson0c5882c2012-05-22 13:41:26 -050013 <modelVersion>4.0.0</modelVersion>
14 <parent>
15 <artifactId>rt.equinox.bundles</artifactId>
16 <groupId>org.eclipse.equinox.bundles</groupId>
Sravan Kumar Lakkimsetti33ee21b2020-12-02 00:15:38 +053017 <version>4.19.0-SNAPSHOT</version>
Thomas Watson0c5882c2012-05-22 13:41:26 -050018 <relativePath>../../</relativePath>
19 </parent>
Thomas Watson55c89972013-02-25 11:02:24 -060020 <groupId>org.eclipse.equinox</groupId>
Thomas Watson0c5882c2012-05-22 13:41:26 -050021 <artifactId>org.eclipse.equinox.security.win32.x86_64</artifactId>
Sravan Kumar Lakkimsetticf55f822019-08-12 14:16:48 +053022 <version>1.1.200-SNAPSHOT</version>
Thomas Watson0c5882c2012-05-22 13:41:26 -050023 <packaging>eclipse-plugin</packaging>
24
Mickael Istriab1ecd002019-06-20 15:37:04 +020025 <properties>
26 <skipAPIAnalysis>true</skipAPIAnalysis>
27 </properties>
28
Thomas Watson0c5882c2012-05-22 13:41:26 -050029 <build>
30 <plugins>
31 <plugin>
32 <groupId>org.eclipse.tycho</groupId>
33 <artifactId>target-platform-configuration</artifactId>
34 <version>${tycho.version}</version>
35 <configuration>
36 <resolver>p2</resolver>
37 <environments>
38 <environment>
39 <os>win32</os>
40 <ws>win32</ws>
41 <arch>x86_64</arch>
42 </environment>
43 </environments>
44 </configuration>
45 </plugin>
46 </plugins>
47 </build>
48</project>