1f2455798SMatthias Sohn<?xml version="1.0" encoding="UTF-8"?> 2f2455798SMatthias Sohn<!-- 343543e79SMatthias Sohn Copyright (C) 2009-2012, 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> 560603519aSMatthias Sohn <version>3.0.0-SNAPSHOT</version> 57f2455798SMatthias Sohn <packaging>pom</packaging> 58f2455798SMatthias Sohn 59f5f1536fSMatthias Sohn <name>JGit Tycho Parent</name> 60f2455798SMatthias Sohn 61f2455798SMatthias Sohn <properties> 626b3515c3SMatthias Sohn <tycho-version>0.17.0</tycho-version> 63f2455798SMatthias Sohn </properties> 64f2455798SMatthias Sohn 65f2455798SMatthias Sohn <modules> 66*77d2f3caSMatthias Sohn <module>org.eclipse.jgit.target</module> 67f2455798SMatthias Sohn <module>org.eclipse.jgit.feature</module> 68e1c48953SMatthias Sohn <module>org.eclipse.jgit.java7.feature</module> 694974090dSMatthias Sohn <module>org.eclipse.jgit.pgm.feature</module> 7051f6fbdaSMatthias Sohn <module>org.eclipse.jgit.source.feature</module> 714974090dSMatthias Sohn <module>org.eclipse.jgit.pgm.source.feature</module> 72e36c2aa8SMatthias Sohn <module>org.eclipse.jgit.junit.feature</module> 7343543e79SMatthias Sohn <module>org.eclipse.jgit.repository</module> 74f2455798SMatthias Sohn </modules> 75f2455798SMatthias Sohn 76af64b9a3SMatthias Sohn <distributionManagement> 77af64b9a3SMatthias Sohn <repository> 78af64b9a3SMatthias Sohn <id>repo.eclipse.org</id> 79af64b9a3SMatthias Sohn <name>JGit Maven Repository - Releases</name> 80af64b9a3SMatthias Sohn <url>https://repo.eclipse.org/content/repositories/jgit-releases/</url> 81af64b9a3SMatthias Sohn </repository> 82af64b9a3SMatthias Sohn <snapshotRepository> 83af64b9a3SMatthias Sohn <id>repo.eclipse.org</id> 84af64b9a3SMatthias Sohn <name>JGit Maven Repository - Snapshots</name> 85af64b9a3SMatthias Sohn <url>https://repo.eclipse.org/content/repositories/jgit-snapshots/</url> 86af64b9a3SMatthias Sohn <uniqueVersion>true</uniqueVersion> 87af64b9a3SMatthias Sohn </snapshotRepository> 88af64b9a3SMatthias Sohn </distributionManagement> 89af64b9a3SMatthias Sohn 9051f6fbdaSMatthias Sohn <dependencies> 9151f6fbdaSMatthias Sohn <!-- sources artifacts so that we can place them in the features --> 9251f6fbdaSMatthias Sohn <dependency> 9351f6fbdaSMatthias Sohn <groupId>org.eclipse.jgit</groupId> 9451f6fbdaSMatthias Sohn <artifactId>org.eclipse.jgit</artifactId> 95*77d2f3caSMatthias Sohn <version>${project.version}</version> 9651f6fbdaSMatthias Sohn <classifier>sources</classifier> 9751f6fbdaSMatthias Sohn </dependency> 984974090dSMatthias Sohn <dependency> 994974090dSMatthias Sohn <groupId>org.eclipse.jgit</groupId> 1004974090dSMatthias Sohn <artifactId>org.eclipse.jgit.pgm</artifactId> 1014974090dSMatthias Sohn <version>${project.version}</version> 1024974090dSMatthias Sohn <classifier>sources</classifier> 1034974090dSMatthias Sohn </dependency> 10451f6fbdaSMatthias Sohn </dependencies> 10551f6fbdaSMatthias Sohn 106f2455798SMatthias Sohn <build> 107f2455798SMatthias Sohn <plugins> 108f2455798SMatthias Sohn <plugin> 1094e7c2f80SChris Aniszczyk <groupId>org.eclipse.tycho</groupId> 110f2455798SMatthias Sohn <artifactId>tycho-maven-plugin</artifactId> 111f2455798SMatthias Sohn <version>${tycho-version}</version> 112f2455798SMatthias Sohn <extensions>true</extensions> 113f2455798SMatthias Sohn </plugin> 114f2455798SMatthias Sohn <plugin> 1154e7c2f80SChris Aniszczyk <groupId>org.eclipse.tycho</groupId> 116f2455798SMatthias Sohn <artifactId>target-platform-configuration</artifactId> 117f2455798SMatthias Sohn <version>${tycho-version}</version> 118f2455798SMatthias Sohn <configuration> 119f2455798SMatthias Sohn <resolver>p2</resolver> 120f2455798SMatthias Sohn </configuration> 121f2455798SMatthias Sohn </plugin> 122f2455798SMatthias Sohn </plugins> 123f2455798SMatthias Sohn <pluginManagement> 124f2455798SMatthias Sohn <plugins> 125f2455798SMatthias Sohn <plugin> 1264e7c2f80SChris Aniszczyk <groupId>org.eclipse.tycho</groupId> 1274e7c2f80SChris Aniszczyk <artifactId>tycho-compiler-plugin</artifactId> 128f2455798SMatthias Sohn <version>${tycho-version}</version> 129f2455798SMatthias Sohn <configuration> 130f2455798SMatthias Sohn <encoding>UTF-8</encoding> 131f2455798SMatthias Sohn </configuration> 132f2455798SMatthias Sohn </plugin> 133f2455798SMatthias Sohn <plugin> 134f2455798SMatthias Sohn <groupId>org.apache.maven.plugins</groupId> 135f2455798SMatthias Sohn <artifactId>maven-resources-plugin</artifactId> 1368375d17cSMatthias Sohn <version>2.5</version> 137f2455798SMatthias Sohn <configuration> 138f2455798SMatthias Sohn <encoding>ISO-8859-1</encoding> 139f2455798SMatthias Sohn </configuration> 140f2455798SMatthias Sohn </plugin> 141f2455798SMatthias Sohn <plugin> 1424e7c2f80SChris Aniszczyk <groupId>org.eclipse.tycho</groupId> 143f2455798SMatthias Sohn <artifactId>target-platform-configuration</artifactId> 144f2455798SMatthias Sohn <version>${tycho-version}</version> 145f2455798SMatthias Sohn <configuration> 146f2455798SMatthias Sohn <resolver>p2</resolver> 147f2455798SMatthias Sohn <pomDependencies>consider</pomDependencies> 148*77d2f3caSMatthias Sohn <target> 149*77d2f3caSMatthias Sohn <artifact> 150*77d2f3caSMatthias Sohn <groupId>org.eclipse.jgit</groupId> 151*77d2f3caSMatthias Sohn <artifactId>org.eclipse.jgit.target</artifactId> 152*77d2f3caSMatthias Sohn <version>${project.version}</version> 153*77d2f3caSMatthias Sohn </artifact> 154*77d2f3caSMatthias Sohn </target> 15544274434SMatthias Sohn <environments> 15644274434SMatthias Sohn <environment> 15744274434SMatthias Sohn <os>linux</os> 15844274434SMatthias Sohn <ws>gtk</ws> 15944274434SMatthias Sohn <arch>x86</arch> 16044274434SMatthias Sohn </environment> 16144274434SMatthias Sohn <environment> 16244274434SMatthias Sohn <os>linux</os> 16344274434SMatthias Sohn <ws>gtk</ws> 16444274434SMatthias Sohn <arch>x86_64</arch> 16544274434SMatthias Sohn </environment> 16644274434SMatthias Sohn <environment> 16744274434SMatthias Sohn <os>win32</os> 16844274434SMatthias Sohn <ws>win32</ws> 16944274434SMatthias Sohn <arch>x86</arch> 17044274434SMatthias Sohn </environment> 17144274434SMatthias Sohn <environment> 17244274434SMatthias Sohn <os>win32</os> 17344274434SMatthias Sohn <ws>win32</ws> 17444274434SMatthias Sohn <arch>x86_64</arch> 17544274434SMatthias Sohn </environment> 17644274434SMatthias Sohn <environment> 17744274434SMatthias Sohn <os>macosx</os> 17844274434SMatthias Sohn <ws>cocoa</ws> 17944274434SMatthias Sohn <arch>x86_64</arch> 18044274434SMatthias Sohn </environment> 18144274434SMatthias Sohn </environments> 182f2455798SMatthias Sohn </configuration> 183f2455798SMatthias Sohn </plugin> 184f2455798SMatthias Sohn </plugins> 185f2455798SMatthias Sohn </pluginManagement> 186f2455798SMatthias Sohn </build> 187dcddaa94SMatthias Sohn 188f2455798SMatthias Sohn</project> 189f2455798SMatthias Sohn 190