1dad52baaSShawn O. Pearce<?xml version="1.0" encoding="UTF-8"?> 2dad52baaSShawn O. Pearce<!-- 31e48c338SShawn O. Pearce Copyright (C) 2009-2010, Google Inc. 4dad52baaSShawn O. Pearce and other copyright owners as documented in the project's IP log. 5dad52baaSShawn O. Pearce 6dad52baaSShawn O. Pearce This program and the accompanying materials are made available 7dad52baaSShawn O. Pearce under the terms of the Eclipse Distribution License v1.0 which 8dad52baaSShawn O. Pearce accompanies this distribution, is reproduced below, and is 9dad52baaSShawn O. Pearce available at http://www.eclipse.org/org/documents/edl-v10.php 10dad52baaSShawn O. Pearce 11dad52baaSShawn O. Pearce All rights reserved. 12dad52baaSShawn O. Pearce 13dad52baaSShawn O. Pearce Redistribution and use in source and binary forms, with or 14dad52baaSShawn O. Pearce without modification, are permitted provided that the following 15dad52baaSShawn O. Pearce conditions are met: 16dad52baaSShawn O. Pearce 17dad52baaSShawn O. Pearce - Redistributions of source code must retain the above copyright 18dad52baaSShawn O. Pearce notice, this list of conditions and the following disclaimer. 19dad52baaSShawn O. Pearce 20dad52baaSShawn O. Pearce - Redistributions in binary form must reproduce the above 21dad52baaSShawn O. Pearce copyright notice, this list of conditions and the following 22dad52baaSShawn O. Pearce disclaimer in the documentation and/or other materials provided 23dad52baaSShawn O. Pearce with the distribution. 24dad52baaSShawn O. Pearce 25dad52baaSShawn O. Pearce - Neither the name of the Eclipse Foundation, Inc. nor the 26dad52baaSShawn O. Pearce names of its contributors may be used to endorse or promote 27dad52baaSShawn O. Pearce products derived from this software without specific prior 28dad52baaSShawn O. Pearce written permission. 29dad52baaSShawn O. Pearce 30dad52baaSShawn O. Pearce THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND 31dad52baaSShawn O. Pearce CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, 32dad52baaSShawn O. Pearce INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES 33dad52baaSShawn O. Pearce OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 34dad52baaSShawn O. Pearce ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR 35dad52baaSShawn O. Pearce CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, 36dad52baaSShawn O. Pearce SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT 37dad52baaSShawn O. Pearce NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; 38dad52baaSShawn O. Pearce LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER 39dad52baaSShawn O. Pearce CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, 40dad52baaSShawn O. Pearce STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) 41dad52baaSShawn O. Pearce ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF 42dad52baaSShawn O. Pearce ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 43dad52baaSShawn O. Pearce--> 44dad52baaSShawn O. Pearce 45dad52baaSShawn O. Pearce<project xmlns="http://maven.apache.org/POM/4.0.0" 46dad52baaSShawn O. Pearce xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 47dad52baaSShawn O. Pearce xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> 48dad52baaSShawn O. Pearce <modelVersion>4.0.0</modelVersion> 49dad52baaSShawn O. Pearce 50dad52baaSShawn O. Pearce <parent> 51dad52baaSShawn O. Pearce <groupId>org.eclipse.jgit</groupId> 52fc5fc70eSShawn O. Pearce <artifactId>org.eclipse.jgit-parent</artifactId> 53b30917ceSMatthias Sohn <version>4.3.0-SNAPSHOT</version> 54dad52baaSShawn O. Pearce </parent> 55dad52baaSShawn O. Pearce 56dad52baaSShawn O. Pearce <artifactId>org.eclipse.jgit.pgm</artifactId> 57dad52baaSShawn O. Pearce <name>JGit - Command Line Interface</name> 58dad52baaSShawn O. Pearce 59dad52baaSShawn O. Pearce <description> 60dad52baaSShawn O. Pearce Command line client tools built on top of JGit. 61dad52baaSShawn O. Pearce </description> 62dad52baaSShawn O. Pearce 634974090dSMatthias Sohn <properties> 644974090dSMatthias Sohn <translate-qualifier/> 654974090dSMatthias Sohn <source-bundle-manifest>${project.build.directory}/META-INF/SOURCE-MANIFEST.MF</source-bundle-manifest> 664974090dSMatthias Sohn </properties> 674974090dSMatthias Sohn 68dad52baaSShawn O. Pearce <dependencies> 69dad52baaSShawn O. Pearce <dependency> 70dad52baaSShawn O. Pearce <groupId>args4j</groupId> 71dad52baaSShawn O. Pearce <artifactId>args4j</artifactId> 72dad52baaSShawn O. Pearce </dependency> 73dad52baaSShawn O. Pearce 74dad52baaSShawn O. Pearce <dependency> 751547eaf7SJonathan Nieder <groupId>org.apache.commons</groupId> 761547eaf7SJonathan Nieder <artifactId>commons-compress</artifactId> 771547eaf7SJonathan Nieder </dependency> 781547eaf7SJonathan Nieder 791547eaf7SJonathan Nieder <dependency> 8056276d05SJonathan Nieder <groupId>org.eclipse.jgit</groupId> 8156276d05SJonathan Nieder <artifactId>org.eclipse.jgit.archive</artifactId> 8256276d05SJonathan Nieder <version>${project.version}</version> 83fc5fc70eSShawn O. Pearce </dependency> 84dad52baaSShawn O. Pearce 85dad52baaSShawn O. Pearce <dependency> 86dad52baaSShawn O. Pearce <groupId>org.eclipse.jgit</groupId> 87dad52baaSShawn O. Pearce <artifactId>org.eclipse.jgit</artifactId> 881e48c338SShawn O. Pearce <version>${project.version}</version> 891e48c338SShawn O. Pearce </dependency> 901e48c338SShawn O. Pearce 911e48c338SShawn O. Pearce <dependency> 921e48c338SShawn O. Pearce <groupId>org.eclipse.jgit</groupId> 93dad52baaSShawn O. Pearce <artifactId>org.eclipse.jgit.ui</artifactId> 94fc5fc70eSShawn O. Pearce <version>${project.version}</version> 95dad52baaSShawn O. Pearce </dependency> 96dd453f41SMatthias Sohn 97dd453f41SMatthias Sohn <dependency> 982647d024SMatthias Sohn <groupId>org.eclipse.jgit</groupId> 992647d024SMatthias Sohn <artifactId>org.eclipse.jgit.http.apache</artifactId> 1002647d024SMatthias Sohn <version>${project.version}</version> 1012647d024SMatthias Sohn </dependency> 1022647d024SMatthias Sohn 1032647d024SMatthias Sohn <dependency> 1042647d024SMatthias Sohn <groupId>org.apache.httpcomponents</groupId> 1052647d024SMatthias Sohn <artifactId>httpclient</artifactId> 1062647d024SMatthias Sohn </dependency> 1072647d024SMatthias Sohn 1082647d024SMatthias Sohn <dependency> 109dd453f41SMatthias Sohn <groupId>org.slf4j</groupId> 110dd453f41SMatthias Sohn <artifactId>slf4j-api</artifactId> 111dd453f41SMatthias Sohn <version>${slf4j-version}</version> 112dd453f41SMatthias Sohn </dependency> 113dd453f41SMatthias Sohn 114dd453f41SMatthias Sohn <dependency> 115dd453f41SMatthias Sohn <groupId>org.slf4j</groupId> 116dd453f41SMatthias Sohn <artifactId>slf4j-log4j12</artifactId> 117dd453f41SMatthias Sohn <version>${slf4j-version}</version> 118dd453f41SMatthias Sohn </dependency> 119dd453f41SMatthias Sohn 120dd453f41SMatthias Sohn <dependency> 121dd453f41SMatthias Sohn <groupId>log4j</groupId> 122dd453f41SMatthias Sohn <artifactId>log4j</artifactId> 123dd453f41SMatthias Sohn <version>${log4j-version}</version> 124dd453f41SMatthias Sohn </dependency> 125*3bae524fSMatthias Sohn 126*3bae524fSMatthias Sohn <dependency> 127*3bae524fSMatthias Sohn <groupId>org.eclipse.jetty</groupId> 128*3bae524fSMatthias Sohn <artifactId>jetty-servlet</artifactId> 129*3bae524fSMatthias Sohn </dependency> 130*3bae524fSMatthias Sohn 131*3bae524fSMatthias Sohn <dependency> 132*3bae524fSMatthias Sohn <groupId>junit</groupId> 133*3bae524fSMatthias Sohn <artifactId>junit</artifactId> 134*3bae524fSMatthias Sohn </dependency> 135*3bae524fSMatthias Sohn 136*3bae524fSMatthias Sohn <dependency> 137*3bae524fSMatthias Sohn <groupId>org.eclipse.jgit</groupId> 138*3bae524fSMatthias Sohn <artifactId>org.eclipse.jgit.junit.http</artifactId> 139*3bae524fSMatthias Sohn <version>${project.version}</version> 140*3bae524fSMatthias Sohn </dependency> 141*3bae524fSMatthias Sohn 142*3bae524fSMatthias Sohn <dependency> 143*3bae524fSMatthias Sohn <groupId>org.eclipse.jgit</groupId> 144*3bae524fSMatthias Sohn <artifactId>org.eclipse.jgit.lfs</artifactId> 145*3bae524fSMatthias Sohn <version>${project.version}</version> 146*3bae524fSMatthias Sohn </dependency> 147*3bae524fSMatthias Sohn 148*3bae524fSMatthias Sohn <dependency> 149*3bae524fSMatthias Sohn <groupId>org.eclipse.jgit</groupId> 150*3bae524fSMatthias Sohn <artifactId>org.eclipse.jgit.lfs.server</artifactId> 151*3bae524fSMatthias Sohn <version>${project.version}</version> 152*3bae524fSMatthias Sohn </dependency> 153dad52baaSShawn O. Pearce </dependencies> 154dad52baaSShawn O. Pearce 155dad52baaSShawn O. Pearce <build> 156dad52baaSShawn O. Pearce <sourceDirectory>src/</sourceDirectory> 157dad52baaSShawn O. Pearce 158dad52baaSShawn O. Pearce <resources> 159dad52baaSShawn O. Pearce <resource> 160dad52baaSShawn O. Pearce <directory>.</directory> 161dad52baaSShawn O. Pearce <includes> 1624974090dSMatthias Sohn <include>plugin.properties</include> 163dad52baaSShawn O. Pearce <include>META-INF/services/org.eclipse.jgit.pgm.TextBuiltin</include> 164e1af16adSMatthias Sohn <include>about.html</include> 165dad52baaSShawn O. Pearce </includes> 166dad52baaSShawn O. Pearce </resource> 167f3d8a8ecSSasa Zivkov <resource> 168f3d8a8ecSSasa Zivkov <directory>resources/</directory> 169f3d8a8ecSSasa Zivkov </resource> 170dad52baaSShawn O. Pearce </resources> 171dad52baaSShawn O. Pearce 172dad52baaSShawn O. Pearce <plugins> 173dad52baaSShawn O. Pearce <plugin> 1744974090dSMatthias Sohn <artifactId>maven-jar-plugin</artifactId> 1754974090dSMatthias Sohn <configuration> 1764974090dSMatthias Sohn <archive> 1774974090dSMatthias Sohn <manifestFile>${bundle-manifest}</manifestFile> 1784974090dSMatthias Sohn </archive> 1794974090dSMatthias Sohn </configuration> 1804974090dSMatthias Sohn </plugin> 1814974090dSMatthias Sohn 1824974090dSMatthias Sohn <plugin> 183dad52baaSShawn O. Pearce <groupId>org.apache.maven.plugins</groupId> 184dad52baaSShawn O. Pearce <artifactId>maven-shade-plugin</artifactId> 185dad52baaSShawn O. Pearce <executions> 186dad52baaSShawn O. Pearce <execution> 187dad52baaSShawn O. Pearce <phase>package</phase> 188dad52baaSShawn O. Pearce <goals> 189dad52baaSShawn O. Pearce <goal>shade</goal> 190dad52baaSShawn O. Pearce </goals> 191dad52baaSShawn O. Pearce <configuration> 192dad52baaSShawn O. Pearce <finalName>jgit-cli</finalName> 193dad52baaSShawn O. Pearce <createDependencyReducedPom>false</createDependencyReducedPom> 194dad52baaSShawn O. Pearce <transformers> 195dad52baaSShawn O. Pearce <transformer implementation="org.apache.maven.plugins.shade.resource.ServicesResourceTransformer" /> 196dad52baaSShawn O. Pearce <transformer implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer"> 197dad52baaSShawn O. Pearce <manifestEntries> 198dad52baaSShawn O. Pearce <Main-Class>org.eclipse.jgit.pgm.Main</Main-Class> 199dad52baaSShawn O. Pearce <Implementation-Title>JGit Command Line Interface</Implementation-Title> 200dad52baaSShawn O. Pearce </manifestEntries> 201dad52baaSShawn O. Pearce </transformer> 202dad52baaSShawn O. Pearce </transformers> 203b4f07df3SMatthias Sohn <filters> 204b4f07df3SMatthias Sohn <!-- exclude the signing data for individual jars, ueberjar will be signed again --> 205b4f07df3SMatthias Sohn <filter> 206b4f07df3SMatthias Sohn <artifact>*:*</artifact> 207b4f07df3SMatthias Sohn <excludes> 208b4f07df3SMatthias Sohn <exclude>META-INF/*.SF</exclude> 209b4f07df3SMatthias Sohn <exclude>META-INF/*.DSA</exclude> 210b4f07df3SMatthias Sohn <exclude>META-INF/*.RSA</exclude> 211b4f07df3SMatthias Sohn <exclude>OSGI-OPT/**</exclude> 212b4f07df3SMatthias Sohn </excludes> 213b4f07df3SMatthias Sohn </filter> 214b4f07df3SMatthias Sohn </filters> 215b4f07df3SMatthias Sohn <shadedArtifactAttached>true</shadedArtifactAttached> 216b4f07df3SMatthias Sohn <shadedClassifierName>shaded</shadedClassifierName> <!-- Any name that makes sense --> 217dad52baaSShawn O. Pearce </configuration> 218dad52baaSShawn O. Pearce </execution> 219dad52baaSShawn O. Pearce </executions> 220dad52baaSShawn O. Pearce </plugin> 221dad52baaSShawn O. Pearce 222dad52baaSShawn O. Pearce <plugin> 223dad52baaSShawn O. Pearce <groupId>org.apache.maven.plugins</groupId> 224dad52baaSShawn O. Pearce <artifactId>maven-antrun-plugin</artifactId> 225dad52baaSShawn O. Pearce <executions> 226dad52baaSShawn O. Pearce <execution> 227dad52baaSShawn O. Pearce <id>create_jgit</id> 228dad52baaSShawn O. Pearce <phase>package</phase> 229dad52baaSShawn O. Pearce <configuration> 2305c788e2cSAlexander Kurtakov <target> 231dad52baaSShawn O. Pearce <concat destfile="${basedir}/target/jgit" force="yes" binary="true"> 232dad52baaSShawn O. Pearce <fileset file="${basedir}/jgit.sh" /> 233dad52baaSShawn O. Pearce <fileset file="${basedir}/target/jgit-cli.jar" /> 234dad52baaSShawn O. Pearce </concat> 235dad52baaSShawn O. Pearce <chmod file="${basedir}/target/jgit" perm="a+x"/> 2365c788e2cSAlexander Kurtakov </target> 237dad52baaSShawn O. Pearce </configuration> 238dad52baaSShawn O. Pearce <goals> 239dad52baaSShawn O. Pearce <goal>run</goal> 240dad52baaSShawn O. Pearce </goals> 241dad52baaSShawn O. Pearce </execution> 2424974090dSMatthias Sohn <execution> 2434974090dSMatthias Sohn <id>translate-source-qualifier</id> 2444974090dSMatthias Sohn <phase>generate-resources</phase> 2454974090dSMatthias Sohn <configuration> 2465c788e2cSAlexander Kurtakov <target> 2474974090dSMatthias Sohn <copy file="META-INF/SOURCE-MANIFEST.MF" tofile="${source-bundle-manifest}" overwrite="true"/> 2484974090dSMatthias Sohn <replace file="${source-bundle-manifest}"> 2494974090dSMatthias Sohn <replacefilter token=".qualifier" value=".${maven.build.timestamp}"/> 2504974090dSMatthias Sohn </replace> 2515c788e2cSAlexander Kurtakov </target> 2524974090dSMatthias Sohn </configuration> 2534974090dSMatthias Sohn <goals> 2544974090dSMatthias Sohn <goal>run</goal> 2554974090dSMatthias Sohn </goals> 2564974090dSMatthias Sohn </execution> 2574974090dSMatthias Sohn </executions> 2584974090dSMatthias Sohn </plugin> 2594974090dSMatthias Sohn 2604974090dSMatthias Sohn <plugin> 2614974090dSMatthias Sohn <groupId>org.apache.maven.plugins</groupId> 2624974090dSMatthias Sohn <artifactId>maven-source-plugin</artifactId> 2634974090dSMatthias Sohn <inherited>true</inherited> 2644974090dSMatthias Sohn <executions> 2654974090dSMatthias Sohn <execution> 2664974090dSMatthias Sohn <id>attach-sources</id> 2674974090dSMatthias Sohn <phase>process-classes</phase> 2684974090dSMatthias Sohn <goals> 2694974090dSMatthias Sohn <goal>jar</goal> 2704974090dSMatthias Sohn </goals> 2714974090dSMatthias Sohn <configuration> 2724974090dSMatthias Sohn <archive> 2734974090dSMatthias Sohn <manifestFile>${source-bundle-manifest}</manifestFile> 2744974090dSMatthias Sohn </archive> 2754974090dSMatthias Sohn </configuration> 2764974090dSMatthias Sohn </execution> 277dad52baaSShawn O. Pearce </executions> 278dad52baaSShawn O. Pearce </plugin> 279dad52baaSShawn O. Pearce 280dad52baaSShawn O. Pearce <plugin> 281dad52baaSShawn O. Pearce <groupId>org.codehaus.mojo</groupId> 282dad52baaSShawn O. Pearce <artifactId>build-helper-maven-plugin</artifactId> 283dad52baaSShawn O. Pearce <executions> 284dad52baaSShawn O. Pearce <execution> 285dad52baaSShawn O. Pearce <id>attach_jgit</id> 286dad52baaSShawn O. Pearce <phase>package</phase> 287dad52baaSShawn O. Pearce <goals> 288dad52baaSShawn O. Pearce <goal>attach-artifact</goal> 289dad52baaSShawn O. Pearce </goals> 290dad52baaSShawn O. Pearce <configuration> 291dad52baaSShawn O. Pearce <artifacts> 292dad52baaSShawn O. Pearce <artifact> 293dad52baaSShawn O. Pearce <file>${basedir}/target/jgit</file> 294dad52baaSShawn O. Pearce <type>sh</type> 295dad52baaSShawn O. Pearce </artifact> 296dad52baaSShawn O. Pearce </artifacts> 297dad52baaSShawn O. Pearce </configuration> 298dad52baaSShawn O. Pearce </execution> 299dad52baaSShawn O. Pearce </executions> 300dad52baaSShawn O. Pearce </plugin> 301dad52baaSShawn O. Pearce </plugins> 302dad52baaSShawn O. Pearce </build> 303dad52baaSShawn O. Pearce</project> 304