1dad52baaSShawn O. Pearce<?xml version="1.0" encoding="UTF-8"?> 2dad52baaSShawn O. Pearce<!-- 3dad52baaSShawn O. Pearce Copyright (C) 2009, Google Inc. 4dad52baaSShawn O. Pearce Copyright (C) 2008, Imran M Yousuf <imyousuf@smartitengineering.com> 5407fe631SMatthias Sohn Copyright (C) 2010, Matthias Sohn <matthias.sohn@sap.com> 6dad52baaSShawn O. Pearce and other copyright owners as documented in the project's IP log. 7dad52baaSShawn O. Pearce 8dad52baaSShawn O. Pearce This program and the accompanying materials are made available 9dad52baaSShawn O. Pearce under the terms of the Eclipse Distribution License v1.0 which 10dad52baaSShawn O. Pearce accompanies this distribution, is reproduced below, and is 11dad52baaSShawn O. Pearce available at http://www.eclipse.org/org/documents/edl-v10.php 12dad52baaSShawn O. Pearce 13dad52baaSShawn O. Pearce All rights reserved. 14dad52baaSShawn O. Pearce 15dad52baaSShawn O. Pearce Redistribution and use in source and binary forms, with or 16dad52baaSShawn O. Pearce without modification, are permitted provided that the following 17dad52baaSShawn O. Pearce conditions are met: 18dad52baaSShawn O. Pearce 19dad52baaSShawn O. Pearce - Redistributions of source code must retain the above copyright 20dad52baaSShawn O. Pearce notice, this list of conditions and the following disclaimer. 21dad52baaSShawn O. Pearce 22dad52baaSShawn O. Pearce - Redistributions in binary form must reproduce the above 23dad52baaSShawn O. Pearce copyright notice, this list of conditions and the following 24dad52baaSShawn O. Pearce disclaimer in the documentation and/or other materials provided 25dad52baaSShawn O. Pearce with the distribution. 26dad52baaSShawn O. Pearce 27dad52baaSShawn O. Pearce - Neither the name of the Eclipse Foundation, Inc. nor the 28dad52baaSShawn O. Pearce names of its contributors may be used to endorse or promote 29dad52baaSShawn O. Pearce products derived from this software without specific prior 30dad52baaSShawn O. Pearce written permission. 31dad52baaSShawn O. Pearce 32dad52baaSShawn O. Pearce THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND 33dad52baaSShawn O. Pearce CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, 34dad52baaSShawn O. Pearce INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES 35dad52baaSShawn O. Pearce OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 36dad52baaSShawn O. Pearce ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR 37dad52baaSShawn O. Pearce CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, 38dad52baaSShawn O. Pearce SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT 39dad52baaSShawn O. Pearce NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; 40dad52baaSShawn O. Pearce LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER 41dad52baaSShawn O. Pearce CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, 42dad52baaSShawn O. Pearce STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) 43dad52baaSShawn O. Pearce ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF 44dad52baaSShawn O. Pearce ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 45dad52baaSShawn O. Pearce--> 46dad52baaSShawn O. Pearce 47dad52baaSShawn O. Pearce<project xmlns="http://maven.apache.org/POM/4.0.0" 48dad52baaSShawn O. Pearce xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 49dad52baaSShawn O. Pearce xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> 50dad52baaSShawn O. Pearce <modelVersion>4.0.0</modelVersion> 51dad52baaSShawn O. Pearce 52dad52baaSShawn O. Pearce <parent> 53dad52baaSShawn O. Pearce <groupId>org.eclipse.jgit</groupId> 54fc5fc70eSShawn O. Pearce <artifactId>org.eclipse.jgit-parent</artifactId> 5590107d53SMatthias Sohn <version>5.4.0-SNAPSHOT</version> 56dad52baaSShawn O. Pearce </parent> 57dad52baaSShawn O. Pearce 58dad52baaSShawn O. Pearce <artifactId>org.eclipse.jgit.ui</artifactId> 59dad52baaSShawn O. Pearce <name>JGit - AWT User Interface</name> 60dad52baaSShawn O. Pearce 61dad52baaSShawn O. Pearce <description> 62dad52baaSShawn O. Pearce AWT/Swing based UI 63dad52baaSShawn O. Pearce </description> 64dad52baaSShawn O. Pearce 65407fe631SMatthias Sohn <properties> 66407fe631SMatthias Sohn <translate-qualifier/> 67*27f1fb66SMatthias Sohn <source-bundle-manifest>${project.build.directory}/META-INF/SOURCE-MANIFEST.MF</source-bundle-manifest> 68407fe631SMatthias Sohn </properties> 69407fe631SMatthias Sohn 70dad52baaSShawn O. Pearce <dependencies> 71dad52baaSShawn O. Pearce <dependency> 72dad52baaSShawn O. Pearce <groupId>org.eclipse.jgit</groupId> 73dad52baaSShawn O. Pearce <artifactId>org.eclipse.jgit</artifactId> 74fc5fc70eSShawn O. Pearce <version>${project.version}</version> 75dad52baaSShawn O. Pearce </dependency> 76dad52baaSShawn O. Pearce </dependencies> 77dad52baaSShawn O. Pearce 78dad52baaSShawn O. Pearce <build> 79dad52baaSShawn O. Pearce <sourceDirectory>src/</sourceDirectory> 80dad52baaSShawn O. Pearce 81dad52baaSShawn O. Pearce <resources> 82dad52baaSShawn O. Pearce <resource> 83dad52baaSShawn O. Pearce <directory>.</directory> 84dad52baaSShawn O. Pearce <includes> 85dad52baaSShawn O. Pearce <include>plugin.properties</include> 86e1af16adSMatthias Sohn <include>about.html</include> 87dad52baaSShawn O. Pearce </includes> 88dad52baaSShawn O. Pearce </resource> 89f3d8a8ecSSasa Zivkov <resource> 90f3d8a8ecSSasa Zivkov <directory>resources/</directory> 91f3d8a8ecSSasa Zivkov </resource> 92dad52baaSShawn O. Pearce </resources> 93dad52baaSShawn O. Pearce 94dad52baaSShawn O. Pearce <plugins> 95dad52baaSShawn O. Pearce <plugin> 96*27f1fb66SMatthias Sohn <groupId>org.apache.maven.plugins</groupId> 97*27f1fb66SMatthias Sohn <artifactId>maven-antrun-plugin</artifactId> 98*27f1fb66SMatthias Sohn <executions> 99*27f1fb66SMatthias Sohn <execution> 100*27f1fb66SMatthias Sohn <id>translate-source-qualifier</id> 101*27f1fb66SMatthias Sohn <phase>generate-resources</phase> 102*27f1fb66SMatthias Sohn <configuration> 103*27f1fb66SMatthias Sohn <target> 104*27f1fb66SMatthias Sohn <copy file="META-INF/SOURCE-MANIFEST.MF" tofile="${source-bundle-manifest}" overwrite="true"/> 105*27f1fb66SMatthias Sohn <replace file="${source-bundle-manifest}"> 106*27f1fb66SMatthias Sohn <replacefilter token=".qualifier" value=".${maven.build.timestamp}"/> 107*27f1fb66SMatthias Sohn </replace> 108*27f1fb66SMatthias Sohn </target> 109*27f1fb66SMatthias Sohn </configuration> 110*27f1fb66SMatthias Sohn <goals> 111*27f1fb66SMatthias Sohn <goal>run</goal> 112*27f1fb66SMatthias Sohn </goals> 113*27f1fb66SMatthias Sohn </execution> 114*27f1fb66SMatthias Sohn </executions> 115*27f1fb66SMatthias Sohn </plugin> 116*27f1fb66SMatthias Sohn 117*27f1fb66SMatthias Sohn <plugin> 118*27f1fb66SMatthias Sohn <groupId>org.apache.maven.plugins</groupId> 119*27f1fb66SMatthias Sohn <artifactId>maven-source-plugin</artifactId> 120*27f1fb66SMatthias Sohn <inherited>true</inherited> 121*27f1fb66SMatthias Sohn <executions> 122*27f1fb66SMatthias Sohn <execution> 123*27f1fb66SMatthias Sohn <id>attach-sources</id> 124*27f1fb66SMatthias Sohn <phase>process-classes</phase> 125*27f1fb66SMatthias Sohn <goals> 126*27f1fb66SMatthias Sohn <goal>jar</goal> 127*27f1fb66SMatthias Sohn </goals> 128*27f1fb66SMatthias Sohn <configuration> 129*27f1fb66SMatthias Sohn <archive> 130*27f1fb66SMatthias Sohn <manifestFile>${source-bundle-manifest}</manifestFile> 131*27f1fb66SMatthias Sohn </archive> 132*27f1fb66SMatthias Sohn </configuration> 133*27f1fb66SMatthias Sohn </execution> 134*27f1fb66SMatthias Sohn </executions> 135*27f1fb66SMatthias Sohn </plugin> 136*27f1fb66SMatthias Sohn 137*27f1fb66SMatthias Sohn <plugin> 138dad52baaSShawn O. Pearce <artifactId>maven-jar-plugin</artifactId> 139dad52baaSShawn O. Pearce <configuration> 140dad52baaSShawn O. Pearce <archive> 141407fe631SMatthias Sohn <manifestFile>${bundle-manifest}</manifestFile> 142dad52baaSShawn O. Pearce </archive> 143dad52baaSShawn O. Pearce </configuration> 144dad52baaSShawn O. Pearce </plugin> 145dad52baaSShawn O. Pearce </plugins> 146dad52baaSShawn O. Pearce </build> 147dad52baaSShawn O. Pearce</project> 148