1<?xml version="1.0" encoding="UTF-8"?>
2<!--
3  Copyright (c) 2012, 2019 Eclipse Foundation and others.
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<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>eclipse.jdt.debug</artifactId>
16    <groupId>eclipse.jdt.debug</groupId>
17    <version>4.16.0-SNAPSHOT</version>
18  </parent>
19  <groupId>org.eclipse.jdt</groupId>
20  <artifactId>org.eclipse.jdt.launching.ui.macosx</artifactId>
21  <version>1.2.600-SNAPSHOT</version>
22  <packaging>eclipse-plugin</packaging>
23
24  <properties>
25    <skipAPIAnalysis>true</skipAPIAnalysis>
26  </properties>
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>macosx</os>
39              <ws>cocoa</ws>
40              <arch>x86_64</arch>
41            </environment>
42          </environments>
43        </configuration>
44      </plugin>
45    </plugins>
46  </build>
47
48</project>
49