143543e79SMatthias Sohn<?xml version="1.0" encoding="UTF-8"?> 243543e79SMatthias Sohn<!-- 343543e79SMatthias Sohn Copyright (C) 2009-2012, Matthias Sohn <matthias.sohn@sap.com> 443543e79SMatthias Sohn and other copyright owners as documented in the project's IP log. 543543e79SMatthias Sohn 643543e79SMatthias Sohn This program and the accompanying materials are made available 743543e79SMatthias Sohn under the terms of the Eclipse Distribution License v1.0 which 843543e79SMatthias Sohn accompanies this distribution, is reproduced below, and is 943543e79SMatthias Sohn available at http://www.eclipse.org/org/documents/edl-v10.php 1043543e79SMatthias Sohn 1143543e79SMatthias Sohn All rights reserved. 1243543e79SMatthias Sohn 1343543e79SMatthias Sohn Redistribution and use in source and binary forms, with or 1443543e79SMatthias Sohn without modification, are permitted provided that the following 1543543e79SMatthias Sohn conditions are met: 1643543e79SMatthias Sohn 1743543e79SMatthias Sohn - Redistributions of source code must retain the above copyright 1843543e79SMatthias Sohn notice, this list of conditions and the following disclaimer. 1943543e79SMatthias Sohn 2043543e79SMatthias Sohn - Redistributions in binary form must reproduce the above 2143543e79SMatthias Sohn copyright notice, this list of conditions and the following 2243543e79SMatthias Sohn disclaimer in the documentation and/or other materials provided 2343543e79SMatthias Sohn with the distribution. 2443543e79SMatthias Sohn 2543543e79SMatthias Sohn - Neither the name of the Eclipse Foundation, Inc. nor the 2643543e79SMatthias Sohn names of its contributors may be used to endorse or promote 2743543e79SMatthias Sohn products derived from this software without specific prior 2843543e79SMatthias Sohn written permission. 2943543e79SMatthias Sohn 3043543e79SMatthias Sohn THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND 3143543e79SMatthias Sohn CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, 3243543e79SMatthias Sohn INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES 3343543e79SMatthias Sohn OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 3443543e79SMatthias Sohn ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR 3543543e79SMatthias Sohn CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, 3643543e79SMatthias Sohn SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT 3743543e79SMatthias Sohn NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; 3843543e79SMatthias Sohn LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER 3943543e79SMatthias Sohn CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, 4043543e79SMatthias Sohn STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) 4143543e79SMatthias Sohn ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF 4243543e79SMatthias Sohn ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 4343543e79SMatthias Sohn--> 4443543e79SMatthias Sohn 4543543e79SMatthias Sohn<project xmlns="http://maven.apache.org/POM/4.0.0" 4643543e79SMatthias Sohn xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 4743543e79SMatthias Sohn xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> 4843543e79SMatthias Sohn <modelVersion>4.0.0</modelVersion> 4943543e79SMatthias Sohn 5043543e79SMatthias Sohn <parent> 5143543e79SMatthias Sohn <groupId>org.eclipse.jgit</groupId> 5243543e79SMatthias Sohn <artifactId>jgit.tycho.parent</artifactId> 53*aacd4f72SMatthias Sohn <version>2.0.0.201206130900-r</version> 5443543e79SMatthias Sohn </parent> 5543543e79SMatthias Sohn 5643543e79SMatthias Sohn <artifactId>org.eclipse.jgit.repository</artifactId> 571c0ac7cdSMatthias Sohn <packaging>eclipse-repository</packaging> 5843543e79SMatthias Sohn 5943543e79SMatthias Sohn <name>JGit P2 Repository</name> 6043543e79SMatthias Sohn 6143543e79SMatthias Sohn <dependencies> 6243543e79SMatthias Sohn <dependency> 6343543e79SMatthias Sohn <groupId>org.eclipse.jgit</groupId> 6443543e79SMatthias Sohn <artifactId>org.eclipse.jgit</artifactId> 65b0531ee1SMatthias Sohn <version>${project.version}</version> 6643543e79SMatthias Sohn </dependency> 6743543e79SMatthias Sohn <dependency> 6843543e79SMatthias Sohn <groupId>org.eclipse.jgit</groupId> 694974090dSMatthias Sohn <artifactId>org.eclipse.jgit.pgm</artifactId> 70*aacd4f72SMatthias Sohn <version>${project.version}</version> 714974090dSMatthias Sohn </dependency> 724974090dSMatthias Sohn <dependency> 734974090dSMatthias Sohn <groupId>org.eclipse.jgit</groupId> 7443543e79SMatthias Sohn <artifactId>org.eclipse.jgit.junit</artifactId> 75b0531ee1SMatthias Sohn <version>${project.version}</version> 7643543e79SMatthias Sohn </dependency> 7743543e79SMatthias Sohn <dependency> 7843543e79SMatthias Sohn <groupId>org.eclipse.jgit</groupId> 7943543e79SMatthias Sohn <artifactId>org.eclipse.jgit.junit.http</artifactId> 80b0531ee1SMatthias Sohn <version>${project.version}</version> 8143543e79SMatthias Sohn </dependency> 8243543e79SMatthias Sohn <dependency> 8343543e79SMatthias Sohn <groupId>org.eclipse.jgit</groupId> 8443543e79SMatthias Sohn <artifactId>org.eclipse.jgit.http.server</artifactId> 85b0531ee1SMatthias Sohn <version>${project.version}</version> 8643543e79SMatthias Sohn </dependency> 8743543e79SMatthias Sohn </dependencies> 8843543e79SMatthias Sohn</project> 89