Skip to main content
aboutsummaryrefslogblamecommitdiffstats
blob: 4b510094e20d6a4dc233a34699a2d268303d5be8 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11










                                                                             
                                                                                                                                                                                                         
                                          


                                  
                                                    
                                                                 
                                     

           

                                                              
                                         

                                  


                                                                                                
 












                                                                       














                                                                                                                                           

































                                                                                                                                             
                   
          
<?xml version="1.0" encoding="UTF-8"?>
<!--
  Copyright (c) 2012 Eclipse Foundation.
  All rights reserved. This program and the accompanying materials
  are made available under the terms of the Eclipse Distribution License v1.0
  which accompanies this distribution, and is available at
  http://www.eclipse.org/org/documents/edl-v10.php
 
  Contributors:
     Igor Fedorenko - initial implementation
-->
<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/maven-v4_0_0.xsd">
	<modelVersion>4.0.0</modelVersion>
  
  <parent>
    <groupId>org.eclipse</groupId>
    <artifactId>eclipse-platform-parent</artifactId>
    <relativePath>../../../eclipse-platform-parent</relativePath>
    <version>4.4.0-SNAPSHOT</version>
  </parent>
  
	<groupId>org.eclipse</groupId>
	<artifactId>org.eclipse.equinox.p2-parent</artifactId>
	<version>4.4.0-SNAPSHOT</version>
	<packaging>pom</packaging>

  <properties>
    <tycho.scmUrl>scm:git:git://git.eclipse.org/gitroot/equinox/rt.equinox.p2.git</tycho.scmUrl>
  </properties>

  <repositories>
    <repository>
      <releases>
        <enabled>true</enabled>
      </releases>
      <snapshots>
        <enabled>true</enabled>
      </snapshots>
      <id>eclipse-hosted</id>
      <url>https://repo.eclipse.org/content/repositories/eclipse/</url>
    </repository>
  </repositories>


	<profiles>
		<profile>
			<id>osx</id>
			<activation>
				<property>
					<name>java.vendor.url</name>
					<value>http://www.apple.com/</value>
				</property>
			</activation>
			<properties>
				<tycho.test.jvmArgs>-Xmx800m -XX:MaxPermSize=256m -Dosgi.ws=cocoa -XstartOnFirstThread</tycho.test.jvmArgs>
				<osgi.ws>cocoa</osgi.ws>
			</properties>
		</profile>
		<profile>
			<id>partial-build</id>
			<activation>
				<property>
					<name>eclipse-sdk-repo.url</name>
				</property>
			</activation>
			<repositories>
				<repository>
					<id>eclipse-snapshots</id>
					<url>http://repo.eclipse.org/content/repositories/eclipse-snapshots/</url>
				</repository>
			</repositories>
			<build>
				<pluginManagement>
					<plugins>
						<plugin>
							<groupId>org.eclipse.tycho</groupId>
							<artifactId>tycho-surefire-plugin</artifactId>
							<configuration>
								<dependencies>
									<dependency>
										<type>eclipse-plugin</type>
										<artifactId>org.eclipse.osgi.compatibility.state</artifactId>
										<version>0.0.0</version>
									</dependency>
								</dependencies>
								<testFailureIgnore>true</testFailureIgnore>
							</configuration>
						</plugin>
					</plugins>
				</pluginManagement>
			</build>
		</profile>
	</profiles>
</project>

Back to the top