15e33a1deSShawn O. Pearce<?xml version="1.0" encoding="UTF-8"?> 25e33a1deSShawn O. Pearce<!-- 35e33a1deSShawn O. Pearce Copyright (C) 2009-2010, Google Inc. 45e33a1deSShawn O. Pearce Copyright (C) 2008, Imran M Yousuf <imyousuf@smartitengineering.com> 5407fe631SMatthias Sohn Copyright (C) 2010, Matthias Sohn <matthias.sohn@sap.com> 65e33a1deSShawn O. Pearce and other copyright owners as documented in the project's IP log. 75e33a1deSShawn O. Pearce 85e33a1deSShawn O. Pearce This program and the accompanying materials are made available 95e33a1deSShawn O. Pearce under the terms of the Eclipse Distribution License v1.0 which 105e33a1deSShawn O. Pearce accompanies this distribution, is reproduced below, and is 115e33a1deSShawn O. Pearce available at http://www.eclipse.org/org/documents/edl-v10.php 125e33a1deSShawn O. Pearce 135e33a1deSShawn O. Pearce All rights reserved. 145e33a1deSShawn O. Pearce 155e33a1deSShawn O. Pearce Redistribution and use in source and binary forms, with or 165e33a1deSShawn O. Pearce without modification, are permitted provided that the following 175e33a1deSShawn O. Pearce conditions are met: 185e33a1deSShawn O. Pearce 195e33a1deSShawn O. Pearce - Redistributions of source code must retain the above copyright 205e33a1deSShawn O. Pearce notice, this list of conditions and the following disclaimer. 215e33a1deSShawn O. Pearce 225e33a1deSShawn O. Pearce - Redistributions in binary form must reproduce the above 235e33a1deSShawn O. Pearce copyright notice, this list of conditions and the following 245e33a1deSShawn O. Pearce disclaimer in the documentation and/or other materials provided 255e33a1deSShawn O. Pearce with the distribution. 265e33a1deSShawn O. Pearce 275e33a1deSShawn O. Pearce - Neither the name of the Eclipse Foundation, Inc. nor the 285e33a1deSShawn O. Pearce names of its contributors may be used to endorse or promote 295e33a1deSShawn O. Pearce products derived from this software without specific prior 305e33a1deSShawn O. Pearce written permission. 315e33a1deSShawn O. Pearce 325e33a1deSShawn O. Pearce THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND 335e33a1deSShawn O. Pearce CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, 345e33a1deSShawn O. Pearce INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES 355e33a1deSShawn O. Pearce OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 365e33a1deSShawn O. Pearce ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR 375e33a1deSShawn O. Pearce CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, 385e33a1deSShawn O. Pearce SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT 395e33a1deSShawn O. Pearce NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; 405e33a1deSShawn O. Pearce LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER 415e33a1deSShawn O. Pearce CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, 425e33a1deSShawn O. Pearce STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) 435e33a1deSShawn O. Pearce ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF 445e33a1deSShawn O. Pearce ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 455e33a1deSShawn O. Pearce--> 465e33a1deSShawn O. Pearce 475e33a1deSShawn O. Pearce<project xmlns="http://maven.apache.org/POM/4.0.0" 485e33a1deSShawn O. Pearce xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 495e33a1deSShawn O. Pearce xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> 505e33a1deSShawn O. Pearce <modelVersion>4.0.0</modelVersion> 515e33a1deSShawn O. Pearce 525e33a1deSShawn O. Pearce <parent> 535e33a1deSShawn O. Pearce <groupId>org.eclipse.jgit</groupId> 545e33a1deSShawn O. Pearce <artifactId>org.eclipse.jgit-parent</artifactId> 5590107d53SMatthias Sohn <version>5.4.0-SNAPSHOT</version> 565e33a1deSShawn O. Pearce </parent> 575e33a1deSShawn O. Pearce 585e33a1deSShawn O. Pearce <artifactId>org.eclipse.jgit.http.server</artifactId> 595e33a1deSShawn O. Pearce <name>JGit - HTTP Server</name> 605e33a1deSShawn O. Pearce 615e33a1deSShawn O. Pearce <description> 625e33a1deSShawn O. Pearce Git aware HTTP server implementation. 635e33a1deSShawn O. Pearce </description> 645e33a1deSShawn 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 705e33a1deSShawn O. Pearce <dependencies> 715e33a1deSShawn O. Pearce <dependency> 725e33a1deSShawn O. Pearce <groupId>org.eclipse.jgit</groupId> 735e33a1deSShawn O. Pearce <artifactId>org.eclipse.jgit</artifactId> 745e33a1deSShawn O. Pearce <version>${project.version}</version> 755e33a1deSShawn O. Pearce </dependency> 765e33a1deSShawn O. Pearce 775e33a1deSShawn O. Pearce <dependency> 785e33a1deSShawn O. Pearce <groupId>javax.servlet</groupId> 79ce8baa37SMatthias Sohn <artifactId>javax.servlet-api</artifactId> 805e33a1deSShawn O. Pearce <scope>provided</scope> 815e33a1deSShawn O. Pearce </dependency> 825e33a1deSShawn O. Pearce </dependencies> 835e33a1deSShawn O. Pearce 845e33a1deSShawn O. Pearce <build> 855e33a1deSShawn O. Pearce <sourceDirectory>src/</sourceDirectory> 865e33a1deSShawn O. Pearce 875e33a1deSShawn O. Pearce <resources> 885e33a1deSShawn O. Pearce <resource> 895e33a1deSShawn O. Pearce <directory>.</directory> 905e33a1deSShawn O. Pearce <includes> 915e33a1deSShawn O. Pearce <include>plugin.properties</include> 92e1af16adSMatthias Sohn <include>about.html</include> 935e33a1deSShawn O. Pearce </includes> 945e33a1deSShawn O. Pearce </resource> 95f3d8a8ecSSasa Zivkov <resource> 96f3d8a8ecSSasa Zivkov <directory>resources/</directory> 97f3d8a8ecSSasa Zivkov </resource> 985e33a1deSShawn O. Pearce </resources> 995e33a1deSShawn O. Pearce 1005e33a1deSShawn O. Pearce <plugins> 1015e33a1deSShawn O. Pearce <plugin> 102ef08017eSShawn O. Pearce <groupId>org.apache.maven.plugins</groupId> 103*27f1fb66SMatthias Sohn <artifactId>maven-antrun-plugin</artifactId> 104*27f1fb66SMatthias Sohn <executions> 105*27f1fb66SMatthias Sohn <execution> 106*27f1fb66SMatthias Sohn <id>translate-source-qualifier</id> 107*27f1fb66SMatthias Sohn <phase>generate-resources</phase> 108*27f1fb66SMatthias Sohn <configuration> 109*27f1fb66SMatthias Sohn <target> 110*27f1fb66SMatthias Sohn <copy file="META-INF/SOURCE-MANIFEST.MF" tofile="${source-bundle-manifest}" overwrite="true"/> 111*27f1fb66SMatthias Sohn <replace file="${source-bundle-manifest}"> 112*27f1fb66SMatthias Sohn <replacefilter token=".qualifier" value=".${maven.build.timestamp}"/> 113*27f1fb66SMatthias Sohn </replace> 114*27f1fb66SMatthias Sohn </target> 115*27f1fb66SMatthias Sohn </configuration> 116*27f1fb66SMatthias Sohn <goals> 117*27f1fb66SMatthias Sohn <goal>run</goal> 118*27f1fb66SMatthias Sohn </goals> 119*27f1fb66SMatthias Sohn </execution> 120*27f1fb66SMatthias Sohn </executions> 121*27f1fb66SMatthias Sohn </plugin> 122*27f1fb66SMatthias Sohn 123*27f1fb66SMatthias Sohn <plugin> 124*27f1fb66SMatthias Sohn <groupId>org.apache.maven.plugins</groupId> 125ef08017eSShawn O. Pearce <artifactId>maven-source-plugin</artifactId> 126ef08017eSShawn O. Pearce <inherited>true</inherited> 127ef08017eSShawn O. Pearce <executions> 128ef08017eSShawn O. Pearce <execution> 129ef08017eSShawn O. Pearce <id>attach-sources</id> 130ef08017eSShawn O. Pearce <phase>process-classes</phase> 131ef08017eSShawn O. Pearce <goals> 132ef08017eSShawn O. Pearce <goal>jar</goal> 133ef08017eSShawn O. Pearce </goals> 134ef08017eSShawn O. Pearce <configuration> 135ef08017eSShawn O. Pearce <archive> 136ef08017eSShawn O. Pearce <manifestFile>${source-bundle-manifest}</manifestFile> 137ef08017eSShawn O. Pearce </archive> 138ef08017eSShawn O. Pearce </configuration> 139ef08017eSShawn O. Pearce </execution> 140ef08017eSShawn O. Pearce </executions> 141ef08017eSShawn O. Pearce </plugin> 142ef08017eSShawn O. Pearce 143ef08017eSShawn O. Pearce <plugin> 1445e33a1deSShawn O. Pearce <artifactId>maven-jar-plugin</artifactId> 1455e33a1deSShawn O. Pearce <configuration> 1465e33a1deSShawn O. Pearce <archive> 147407fe631SMatthias Sohn <manifestFile>${bundle-manifest}</manifestFile> 1485e33a1deSShawn O. Pearce </archive> 1495e33a1deSShawn O. Pearce </configuration> 1505e33a1deSShawn O. Pearce </plugin> 151e178ba20SMatthias Sohn 152e178ba20SMatthias Sohn <plugin> 153100179a1SMatthias Sohn <groupId>com.github.siom79.japicmp</groupId> 154100179a1SMatthias Sohn <artifactId>japicmp-maven-plugin</artifactId> 155100179a1SMatthias Sohn <version>${japicmp-version}</version> 156100179a1SMatthias Sohn <configuration> 157100179a1SMatthias Sohn <oldVersion> 158100179a1SMatthias Sohn <dependency> 159100179a1SMatthias Sohn <groupId>${project.groupId}</groupId> 160100179a1SMatthias Sohn <artifactId>${project.artifactId}</artifactId> 161100179a1SMatthias Sohn <version>${jgit-last-release-version}</version> 162100179a1SMatthias Sohn </dependency> 163100179a1SMatthias Sohn </oldVersion> 164100179a1SMatthias Sohn <newVersion> 165100179a1SMatthias Sohn <file> 166100179a1SMatthias Sohn <path>${project.build.directory}/${project.artifactId}-${project.version}.jar</path> 167100179a1SMatthias Sohn </file> 168100179a1SMatthias Sohn </newVersion> 169100179a1SMatthias Sohn <parameter> 170100179a1SMatthias Sohn <onlyModified>true</onlyModified> 171100179a1SMatthias Sohn <includes> 172100179a1SMatthias Sohn <include>org.eclipse.jgit.*</include> 173100179a1SMatthias Sohn </includes> 174100179a1SMatthias Sohn <accessModifier>public</accessModifier> 175100179a1SMatthias Sohn <breakBuildOnModifications>false</breakBuildOnModifications> 176100179a1SMatthias Sohn <breakBuildOnBinaryIncompatibleModifications>false</breakBuildOnBinaryIncompatibleModifications> 177100179a1SMatthias Sohn <onlyBinaryIncompatible>false</onlyBinaryIncompatible> 178100179a1SMatthias Sohn <includeSynthetic>false</includeSynthetic> 179100179a1SMatthias Sohn <ignoreMissingClasses>false</ignoreMissingClasses> 180100179a1SMatthias Sohn <skipPomModules>true</skipPomModules> 181100179a1SMatthias Sohn </parameter> 182100179a1SMatthias Sohn <skip>false</skip> 183100179a1SMatthias Sohn </configuration> 184100179a1SMatthias Sohn <executions> 185100179a1SMatthias Sohn <execution> 186100179a1SMatthias Sohn <phase>verify</phase> 187100179a1SMatthias Sohn <goals> 188100179a1SMatthias Sohn <goal>cmp</goal> 189100179a1SMatthias Sohn </goals> 190100179a1SMatthias Sohn </execution> 191100179a1SMatthias Sohn </executions> 192e178ba20SMatthias Sohn </plugin> 1935e33a1deSShawn O. Pearce </plugins> 1945e33a1deSShawn O. Pearce </build> 195e178ba20SMatthias Sohn 196e178ba20SMatthias Sohn <reporting> 197e178ba20SMatthias Sohn <plugins> 198e178ba20SMatthias Sohn <plugin> 199100179a1SMatthias Sohn <groupId>com.github.siom79.japicmp</groupId> 200100179a1SMatthias Sohn <artifactId>japicmp-maven-plugin</artifactId> 201100179a1SMatthias Sohn <version>${japicmp-version}</version> 202100179a1SMatthias Sohn <reportSets> 203100179a1SMatthias Sohn <reportSet> 204100179a1SMatthias Sohn <reports> 205100179a1SMatthias Sohn <report>cmp-report</report> 206100179a1SMatthias Sohn </reports> 207100179a1SMatthias Sohn </reportSet> 208100179a1SMatthias Sohn </reportSets> 209e178ba20SMatthias Sohn <configuration> 210100179a1SMatthias Sohn <oldVersion> 211100179a1SMatthias Sohn <dependency> 212100179a1SMatthias Sohn <groupId>${project.groupId}</groupId> 213100179a1SMatthias Sohn <artifactId>${project.artifactId}</artifactId> 214100179a1SMatthias Sohn <version>${jgit-last-release-version}</version> 215100179a1SMatthias Sohn </dependency> 216100179a1SMatthias Sohn </oldVersion> 217100179a1SMatthias Sohn <newVersion> 218100179a1SMatthias Sohn <file> 219100179a1SMatthias Sohn <path>${project.build.directory}/${project.artifactId}-${project.version}.jar</path> 220100179a1SMatthias Sohn </file> 221100179a1SMatthias Sohn </newVersion> 222100179a1SMatthias Sohn <parameter> 223100179a1SMatthias Sohn <onlyModified>true</onlyModified> 224100179a1SMatthias Sohn <includes> 225100179a1SMatthias Sohn <include>org.eclipse.jgit.*</include> 226100179a1SMatthias Sohn </includes> 227100179a1SMatthias Sohn <accessModifier>public</accessModifier> 228100179a1SMatthias Sohn <breakBuildOnModifications>false</breakBuildOnModifications> 229100179a1SMatthias Sohn <breakBuildOnBinaryIncompatibleModifications>false</breakBuildOnBinaryIncompatibleModifications> 230100179a1SMatthias Sohn <onlyBinaryIncompatible>false</onlyBinaryIncompatible> 231100179a1SMatthias Sohn <includeSynthetic>false</includeSynthetic> 232100179a1SMatthias Sohn <ignoreMissingClasses>false</ignoreMissingClasses> 233100179a1SMatthias Sohn <skipPomModules>true</skipPomModules> 234100179a1SMatthias Sohn </parameter> 235100179a1SMatthias Sohn <skip>false</skip> 236e178ba20SMatthias Sohn </configuration> 237e178ba20SMatthias Sohn </plugin> 238e178ba20SMatthias Sohn </plugins> 239e178ba20SMatthias Sohn </reporting> 2405e33a1deSShawn O. Pearce</project> 241