1f2455798SMatthias Sohn<?xml version="1.0" encoding="UTF-8"?> 2f2455798SMatthias Sohn<!-- 3f2455798SMatthias Sohn Copyright (C) 2009-2010, Matthias Sohn <matthias.sohn@sap.com> 4f2455798SMatthias Sohn and other copyright owners as documented in the project's IP log. 5f2455798SMatthias Sohn 6f2455798SMatthias Sohn This program and the accompanying materials are made available 7f2455798SMatthias Sohn under the terms of the Eclipse Distribution License v1.0 which 8f2455798SMatthias Sohn accompanies this distribution, is reproduced below, and is 9f2455798SMatthias Sohn available at http://www.eclipse.org/org/documents/edl-v10.php 10f2455798SMatthias Sohn 11f2455798SMatthias Sohn All rights reserved. 12f2455798SMatthias Sohn 13f2455798SMatthias Sohn Redistribution and use in source and binary forms, with or 14f2455798SMatthias Sohn without modification, are permitted provided that the following 15f2455798SMatthias Sohn conditions are met: 16f2455798SMatthias Sohn 17f2455798SMatthias Sohn - Redistributions of source code must retain the above copyright 18f2455798SMatthias Sohn notice, this list of conditions and the following disclaimer. 19f2455798SMatthias Sohn 20f2455798SMatthias Sohn - Redistributions in binary form must reproduce the above 21f2455798SMatthias Sohn copyright notice, this list of conditions and the following 22f2455798SMatthias Sohn disclaimer in the documentation and/or other materials provided 23f2455798SMatthias Sohn with the distribution. 24f2455798SMatthias Sohn 25f2455798SMatthias Sohn - Neither the name of the Eclipse Foundation, Inc. nor the 26f2455798SMatthias Sohn names of its contributors may be used to endorse or promote 27f2455798SMatthias Sohn products derived from this software without specific prior 28f2455798SMatthias Sohn written permission. 29f2455798SMatthias Sohn 30f2455798SMatthias Sohn THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND 31f2455798SMatthias Sohn CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, 32f2455798SMatthias Sohn INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES 33f2455798SMatthias Sohn OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 34f2455798SMatthias Sohn ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR 35f2455798SMatthias Sohn CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, 36f2455798SMatthias Sohn SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT 37f2455798SMatthias Sohn NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; 38f2455798SMatthias Sohn LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER 39f2455798SMatthias Sohn CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, 40f2455798SMatthias Sohn STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) 41f2455798SMatthias Sohn ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF 42f2455798SMatthias Sohn ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 43f2455798SMatthias Sohn--> 44f2455798SMatthias Sohn 45f2455798SMatthias Sohn<project xmlns="http://maven.apache.org/POM/4.0.0" 46f2455798SMatthias Sohn xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 47f2455798SMatthias Sohn xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> 48f2455798SMatthias Sohn <modelVersion>4.0.0</modelVersion> 49f2455798SMatthias Sohn 50f2455798SMatthias Sohn <prerequisites> 51f2455798SMatthias Sohn <maven>3.0</maven> 52f2455798SMatthias Sohn </prerequisites> 53f2455798SMatthias Sohn 54f2455798SMatthias Sohn <groupId>org.eclipse.jgit</groupId> 55f2455798SMatthias Sohn <artifactId>jgit.tycho.parent</artifactId> 56239ce585SShawn O. Pearce <version>0.9.0-SNAPSHOT</version> 57f2455798SMatthias Sohn <packaging>pom</packaging> 58f2455798SMatthias Sohn 59f2455798SMatthias Sohn <name>JGit Tycho Parent (Incubation)</name> 60f2455798SMatthias Sohn 61f2455798SMatthias Sohn <properties> 62a2325f68SMatthias Sohn <tycho-version>0.9.0</tycho-version> 6333ae23b8SMatthias Sohn <eclipse-site>http://download.eclipse.org/releases/galileo</eclipse-site> 64f2455798SMatthias Sohn </properties> 65f2455798SMatthias Sohn 66f2455798SMatthias Sohn <modules> 67f2455798SMatthias Sohn <module>org.eclipse.jgit.feature</module> 68*51f6fbdaSMatthias Sohn <module>org.eclipse.jgit.source.feature</module> 69e36c2aa8SMatthias Sohn <module>org.eclipse.jgit.junit.feature</module> 70f2455798SMatthias Sohn <module>org.eclipse.jgit.updatesite</module> 71f2455798SMatthias Sohn </modules> 72f2455798SMatthias Sohn 73f2455798SMatthias Sohn <repositories> 74f2455798SMatthias Sohn <repository> 75fa4c3fe4SRobin Rosenberg <id>ganymede</id> 76f2455798SMatthias Sohn <layout>p2</layout> 77407fe631SMatthias Sohn <url>${eclipse-site}</url> 78f2455798SMatthias Sohn </repository> 79f2455798SMatthias Sohn </repositories> 80f2455798SMatthias Sohn 81*51f6fbdaSMatthias Sohn <dependencies> 82*51f6fbdaSMatthias Sohn <!-- sources artifacts so that we can place them in the features --> 83*51f6fbdaSMatthias Sohn <dependency> 84*51f6fbdaSMatthias Sohn <groupId>org.eclipse.jgit</groupId> 85*51f6fbdaSMatthias Sohn <artifactId>org.eclipse.jgit</artifactId> 86*51f6fbdaSMatthias Sohn <version>0.9.0-SNAPSHOT</version> 87*51f6fbdaSMatthias Sohn <classifier>sources</classifier> 88*51f6fbdaSMatthias Sohn </dependency> 89*51f6fbdaSMatthias Sohn </dependencies> 90*51f6fbdaSMatthias Sohn 91f2455798SMatthias Sohn <build> 92f2455798SMatthias Sohn <plugins> 93f2455798SMatthias Sohn <plugin> 94f2455798SMatthias Sohn <groupId>org.sonatype.tycho</groupId> 95f2455798SMatthias Sohn <artifactId>tycho-maven-plugin</artifactId> 96f2455798SMatthias Sohn <version>${tycho-version}</version> 97f2455798SMatthias Sohn <extensions>true</extensions> 98f2455798SMatthias Sohn </plugin> 99f2455798SMatthias Sohn <plugin> 100f2455798SMatthias Sohn <groupId>org.sonatype.tycho</groupId> 101f2455798SMatthias Sohn <artifactId>target-platform-configuration</artifactId> 102f2455798SMatthias Sohn <version>${tycho-version}</version> 103f2455798SMatthias Sohn <configuration> 104f2455798SMatthias Sohn <resolver>p2</resolver> 105f2455798SMatthias Sohn </configuration> 106f2455798SMatthias Sohn </plugin> 107f2455798SMatthias Sohn </plugins> 108f2455798SMatthias Sohn <pluginManagement> 109f2455798SMatthias Sohn <plugins> 110f2455798SMatthias Sohn <plugin> 111f2455798SMatthias Sohn <groupId>org.sonatype.tycho</groupId> 112f2455798SMatthias Sohn <artifactId>maven-osgi-compiler-plugin</artifactId> 113f2455798SMatthias Sohn <version>${tycho-version}</version> 114f2455798SMatthias Sohn <configuration> 115f2455798SMatthias Sohn <encoding>UTF-8</encoding> 116f2455798SMatthias Sohn </configuration> 117f2455798SMatthias Sohn </plugin> 118f2455798SMatthias Sohn <plugin> 119f2455798SMatthias Sohn <groupId>org.apache.maven.plugins</groupId> 120f2455798SMatthias Sohn <artifactId>maven-resources-plugin</artifactId> 121f2455798SMatthias Sohn <version>2.4.1</version> 122f2455798SMatthias Sohn <configuration> 123f2455798SMatthias Sohn <encoding>ISO-8859-1</encoding> 124f2455798SMatthias Sohn </configuration> 125f2455798SMatthias Sohn </plugin> 126f2455798SMatthias Sohn <plugin> 127f2455798SMatthias Sohn <groupId>org.sonatype.tycho</groupId> 128f2455798SMatthias Sohn <artifactId>target-platform-configuration</artifactId> 129f2455798SMatthias Sohn <version>${tycho-version}</version> 130f2455798SMatthias Sohn <configuration> 131f2455798SMatthias Sohn <resolver>p2</resolver> 132f2455798SMatthias Sohn <pomDependencies>consider</pomDependencies> 133f2455798SMatthias Sohn </configuration> 134f2455798SMatthias Sohn </plugin> 135f2455798SMatthias Sohn </plugins> 136f2455798SMatthias Sohn </pluginManagement> 137f2455798SMatthias Sohn </build> 138f2455798SMatthias Sohn</project> 139f2455798SMatthias Sohn 140