1dad52baaSShawn O. Pearce<?xml version="1.0" encoding="UTF-8"?> 2dad52baaSShawn O. Pearce<!-- 3dad52baaSShawn O. Pearce Copyright (C) 2009, Google Inc. 496c7f75fSIgor Fedorenko Copyright (C) 2009, Igor Fedorenko <igor@ifedorenko.com> 5dad52baaSShawn O. Pearce Copyright (C) 2008, Imran M Yousuf <imyousuf@smartitengineering.com> 65c5f7c6bSMatthias Sohn Copyright (C) 2010, Matthias Sohn <matthias.sohn@sap.com> and others 7dad52baaSShawn O. Pearce 85c5f7c6bSMatthias Sohn This program and the accompanying materials are made available under the 95c5f7c6bSMatthias Sohn terms of the Eclipse Distribution License v. 1.0 which is available at 105c5f7c6bSMatthias Sohn http://www.eclipse.org/org/documents/edl-v10.php. 11dad52baaSShawn O. Pearce 125c5f7c6bSMatthias Sohn SPDX-License-Identifier: BSD-3-Clause 13dad52baaSShawn O. Pearce--> 14dad52baaSShawn O. Pearce 15dad52baaSShawn O. Pearce<project xmlns="http://maven.apache.org/POM/4.0.0" 16dad52baaSShawn O. Pearce xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 17dad52baaSShawn O. Pearce xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> 18dad52baaSShawn O. Pearce <modelVersion>4.0.0</modelVersion> 19dad52baaSShawn O. Pearce 20dad52baaSShawn O. Pearce <parent> 21dad52baaSShawn O. Pearce <groupId>org.eclipse.jgit</groupId> 22fc5fc70eSShawn O. Pearce <artifactId>org.eclipse.jgit-parent</artifactId> 23*1cbfea9eSMatthias Sohn <version>5.13.0-SNAPSHOT</version> 24dad52baaSShawn O. Pearce </parent> 25dad52baaSShawn O. Pearce 26dad52baaSShawn O. Pearce <artifactId>org.eclipse.jgit</artifactId> 27dad52baaSShawn O. Pearce <name>JGit - Core</name> 28dad52baaSShawn O. Pearce 29dad52baaSShawn O. Pearce <description> 30dad52baaSShawn O. Pearce Repository access and algorithms 31dad52baaSShawn O. Pearce </description> 32dad52baaSShawn O. Pearce 33407fe631SMatthias Sohn <properties> 34407fe631SMatthias Sohn <translate-qualifier/> 35f8eb7e16SMatthias Sohn <source-bundle-manifest>${project.build.directory}/META-INF/SOURCE-MANIFEST.MF</source-bundle-manifest> 36407fe631SMatthias Sohn </properties> 37407fe631SMatthias Sohn 38dad52baaSShawn O. Pearce <dependencies> 39dad52baaSShawn O. Pearce <dependency> 403b325917SColby Ranger <groupId>com.googlecode.javaewah</groupId> 413b325917SColby Ranger <artifactId>JavaEWAH</artifactId> 423b325917SColby Ranger </dependency> 432290516dSChristian Halstrick 44c18694e0SMatthias Sohn <dependency> 45c18694e0SMatthias Sohn <groupId>org.slf4j</groupId> 46c18694e0SMatthias Sohn <artifactId>slf4j-api</artifactId> 47c18694e0SMatthias Sohn </dependency> 48c4e209b2SMasaya Suzuki 49dad52baaSShawn O. Pearce </dependencies> 50dad52baaSShawn O. Pearce 51dad52baaSShawn O. Pearce <build> 52dad52baaSShawn O. Pearce <sourceDirectory>src/</sourceDirectory> 53dad52baaSShawn O. Pearce 54dad52baaSShawn O. Pearce <resources> 55dad52baaSShawn O. Pearce <resource> 56dad52baaSShawn O. Pearce <directory>.</directory> 57dad52baaSShawn O. Pearce <includes> 58dad52baaSShawn O. Pearce <include>plugin.properties</include> 59e1af16adSMatthias Sohn <include>about.html</include> 60e0910edfSMatthias Sohn <include>META-INF/eclipse.inf</include> 61dad52baaSShawn O. Pearce </includes> 62dad52baaSShawn O. Pearce </resource> 63f3d8a8ecSSasa Zivkov <resource> 64f3d8a8ecSSasa Zivkov <directory>resources/</directory> 65f3d8a8ecSSasa Zivkov </resource> 66dad52baaSShawn O. Pearce </resources> 6796c7f75fSIgor Fedorenko 68fc5fc70eSShawn O. Pearce <plugins> 69fc5fc70eSShawn O. Pearce <plugin> 70f8eb7e16SMatthias Sohn <groupId>org.apache.maven.plugins</groupId> 71f8eb7e16SMatthias Sohn <artifactId>maven-antrun-plugin</artifactId> 72f8eb7e16SMatthias Sohn <executions> 73f8eb7e16SMatthias Sohn <execution> 74f8eb7e16SMatthias Sohn <id>translate-source-qualifier</id> 75f8eb7e16SMatthias Sohn <phase>generate-resources</phase> 76f8eb7e16SMatthias Sohn <configuration> 775c788e2cSAlexander Kurtakov <target> 78f8eb7e16SMatthias Sohn <copy file="META-INF/SOURCE-MANIFEST.MF" tofile="${source-bundle-manifest}" overwrite="true"/> 79f8eb7e16SMatthias Sohn <replace file="${source-bundle-manifest}"> 80f8eb7e16SMatthias Sohn <replacefilter token=".qualifier" value=".${maven.build.timestamp}"/> 81f8eb7e16SMatthias Sohn </replace> 825c788e2cSAlexander Kurtakov </target> 83f8eb7e16SMatthias Sohn </configuration> 84f8eb7e16SMatthias Sohn <goals> 85f8eb7e16SMatthias Sohn <goal>run</goal> 86f8eb7e16SMatthias Sohn </goals> 87f8eb7e16SMatthias Sohn </execution> 88f8eb7e16SMatthias Sohn </executions> 89f8eb7e16SMatthias Sohn </plugin> 90f8eb7e16SMatthias Sohn 91f8eb7e16SMatthias Sohn <plugin> 92f8eb7e16SMatthias Sohn <groupId>org.apache.maven.plugins</groupId> 93f8eb7e16SMatthias Sohn <artifactId>maven-source-plugin</artifactId> 94f8eb7e16SMatthias Sohn <inherited>true</inherited> 95f8eb7e16SMatthias Sohn <executions> 96f8eb7e16SMatthias Sohn <execution> 97f8eb7e16SMatthias Sohn <id>attach-sources</id> 98f8eb7e16SMatthias Sohn <phase>process-classes</phase> 99f8eb7e16SMatthias Sohn <goals> 100f8eb7e16SMatthias Sohn <goal>jar</goal> 101f8eb7e16SMatthias Sohn </goals> 102f8eb7e16SMatthias Sohn <configuration> 103f8eb7e16SMatthias Sohn <archive> 104f8eb7e16SMatthias Sohn <manifestFile>${source-bundle-manifest}</manifestFile> 105f8eb7e16SMatthias Sohn </archive> 106f8eb7e16SMatthias Sohn </configuration> 107f8eb7e16SMatthias Sohn </execution> 108f8eb7e16SMatthias Sohn </executions> 109f8eb7e16SMatthias Sohn </plugin> 110f8eb7e16SMatthias Sohn 111f8eb7e16SMatthias Sohn <plugin> 112fc5fc70eSShawn O. Pearce <artifactId>maven-jar-plugin</artifactId> 113fc5fc70eSShawn O. Pearce <configuration> 114fc5fc70eSShawn O. Pearce <archive> 115407fe631SMatthias Sohn <manifestFile>${bundle-manifest}</manifestFile> 116fc5fc70eSShawn O. Pearce </archive> 117fc5fc70eSShawn O. Pearce </configuration> 118fc5fc70eSShawn O. Pearce </plugin> 119e178ba20SMatthias Sohn 120e178ba20SMatthias Sohn <plugin> 121100179a1SMatthias Sohn <groupId>com.github.siom79.japicmp</groupId> 122100179a1SMatthias Sohn <artifactId>japicmp-maven-plugin</artifactId> 123100179a1SMatthias Sohn <version>${japicmp-version}</version> 124100179a1SMatthias Sohn <configuration> 125100179a1SMatthias Sohn <oldVersion> 126100179a1SMatthias Sohn <dependency> 127100179a1SMatthias Sohn <groupId>${project.groupId}</groupId> 128100179a1SMatthias Sohn <artifactId>${project.artifactId}</artifactId> 129100179a1SMatthias Sohn <version>${jgit-last-release-version}</version> 130100179a1SMatthias Sohn </dependency> 131100179a1SMatthias Sohn </oldVersion> 132100179a1SMatthias Sohn <newVersion> 133100179a1SMatthias Sohn <file> 134100179a1SMatthias Sohn <path>${project.build.directory}/${project.artifactId}-${project.version}.jar</path> 135100179a1SMatthias Sohn </file> 136100179a1SMatthias Sohn </newVersion> 137100179a1SMatthias Sohn <parameter> 138100179a1SMatthias Sohn <onlyModified>true</onlyModified> 139100179a1SMatthias Sohn <includes> 140100179a1SMatthias Sohn <include>org.eclipse.jgit.*</include> 141100179a1SMatthias Sohn </includes> 142100179a1SMatthias Sohn <accessModifier>public</accessModifier> 143100179a1SMatthias Sohn <breakBuildOnModifications>false</breakBuildOnModifications> 144100179a1SMatthias Sohn <breakBuildOnBinaryIncompatibleModifications>false</breakBuildOnBinaryIncompatibleModifications> 145100179a1SMatthias Sohn <onlyBinaryIncompatible>false</onlyBinaryIncompatible> 146100179a1SMatthias Sohn <includeSynthetic>false</includeSynthetic> 14777848d63SMatthias Sohn <ignoreMissingClasses>true</ignoreMissingClasses> 148100179a1SMatthias Sohn <skipPomModules>true</skipPomModules> 149100179a1SMatthias Sohn </parameter> 150100179a1SMatthias Sohn <skip>false</skip> 151100179a1SMatthias Sohn </configuration> 152100179a1SMatthias Sohn <executions> 153100179a1SMatthias Sohn <execution> 154100179a1SMatthias Sohn <phase>verify</phase> 155100179a1SMatthias Sohn <goals> 156100179a1SMatthias Sohn <goal>cmp</goal> 157100179a1SMatthias Sohn </goals> 158100179a1SMatthias Sohn </execution> 159100179a1SMatthias Sohn </executions> 160e178ba20SMatthias Sohn </plugin> 161df85978aSMatthias Sohn </plugins> 162e178ba20SMatthias Sohn 163df85978aSMatthias Sohn <pluginManagement> 164df85978aSMatthias Sohn <plugins> 165241ab227SChris Aniszczyk <plugin> 166021e72b8SMatthias Sohn <groupId>com.github.spotbugs</groupId> 167de769847SMatthias Sohn <artifactId>spotbugs-maven-plugin</artifactId> 1682d0a1adfSMatthias Sohn <version>${spotbugs-maven-plugin-version}</version> 169241ab227SChris Aniszczyk <configuration> 170f6a15f04SMatthias Sohn <excludeFilterFile>findBugs/FindBugsExcludeFilter.xml</excludeFilterFile> 171241ab227SChris Aniszczyk </configuration> 172241ab227SChris Aniszczyk </plugin> 173fc5fc70eSShawn O. Pearce </plugins> 174df85978aSMatthias Sohn </pluginManagement> 175fc5fc70eSShawn O. Pearce </build> 176e178ba20SMatthias Sohn 177e178ba20SMatthias Sohn <reporting> 178e178ba20SMatthias Sohn <plugins> 179e178ba20SMatthias Sohn <plugin> 180100179a1SMatthias Sohn <groupId>com.github.siom79.japicmp</groupId> 181100179a1SMatthias Sohn <artifactId>japicmp-maven-plugin</artifactId> 182100179a1SMatthias Sohn <version>${japicmp-version}</version> 183100179a1SMatthias Sohn <reportSets> 184100179a1SMatthias Sohn <reportSet> 185100179a1SMatthias Sohn <reports> 186100179a1SMatthias Sohn <report>cmp-report</report> 187100179a1SMatthias Sohn </reports> 188100179a1SMatthias Sohn </reportSet> 189100179a1SMatthias Sohn </reportSets> 190e178ba20SMatthias Sohn <configuration> 191100179a1SMatthias Sohn <oldVersion> 192100179a1SMatthias Sohn <dependency> 193100179a1SMatthias Sohn <groupId>${project.groupId}</groupId> 194100179a1SMatthias Sohn <artifactId>${project.artifactId}</artifactId> 195100179a1SMatthias Sohn <version>${jgit-last-release-version}</version> 196100179a1SMatthias Sohn </dependency> 197100179a1SMatthias Sohn </oldVersion> 198100179a1SMatthias Sohn <newVersion> 199100179a1SMatthias Sohn <file> 200100179a1SMatthias Sohn <path>${project.build.directory}/${project.artifactId}-${project.version}.jar</path> 201100179a1SMatthias Sohn </file> 202100179a1SMatthias Sohn </newVersion> 203100179a1SMatthias Sohn <parameter> 204100179a1SMatthias Sohn <onlyModified>true</onlyModified> 205100179a1SMatthias Sohn <includes> 206100179a1SMatthias Sohn <include>org.eclipse.jgit.*</include> 207100179a1SMatthias Sohn </includes> 208100179a1SMatthias Sohn <accessModifier>public</accessModifier> 209100179a1SMatthias Sohn <breakBuildOnModifications>false</breakBuildOnModifications> 210100179a1SMatthias Sohn <breakBuildOnBinaryIncompatibleModifications>false</breakBuildOnBinaryIncompatibleModifications> 211100179a1SMatthias Sohn <onlyBinaryIncompatible>false</onlyBinaryIncompatible> 212100179a1SMatthias Sohn <includeSynthetic>false</includeSynthetic> 21377848d63SMatthias Sohn <ignoreMissingClasses>true</ignoreMissingClasses> 214100179a1SMatthias Sohn <skipPomModules>true</skipPomModules> 215100179a1SMatthias Sohn </parameter> 216100179a1SMatthias Sohn <skip>false</skip> 217e178ba20SMatthias Sohn </configuration> 218e178ba20SMatthias Sohn </plugin> 219e178ba20SMatthias Sohn </plugins> 220e178ba20SMatthias Sohn </reporting> 221dad52baaSShawn O. Pearce</project> 222