Shawn O. Pearce | dad52ba | 2009-10-31 18:07:26 -0700 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
| 2 | <!-- |
| 3 | Copyright (C) 2009, Google Inc. |
Igor Fedorenko | 96c7f75 | 2009-12-05 01:07:42 -0500 | [diff] [blame] | 4 | Copyright (C) 2009, Igor Fedorenko <igor@ifedorenko.com> |
Shawn O. Pearce | dad52ba | 2009-10-31 18:07:26 -0700 | [diff] [blame] | 5 | Copyright (C) 2008, Imran M Yousuf <imyousuf@smartitengineering.com> |
Matthias Sohn | 407fe63 | 2010-01-23 01:03:37 +0100 | [diff] [blame] | 6 | Copyright (C) 2010, Matthias Sohn <matthias.sohn@sap.com> |
Shawn O. Pearce | dad52ba | 2009-10-31 18:07:26 -0700 | [diff] [blame] | 7 | and other copyright owners as documented in the project's IP log. |
| 8 | |
| 9 | This program and the accompanying materials are made available |
| 10 | under the terms of the Eclipse Distribution License v1.0 which |
| 11 | accompanies this distribution, is reproduced below, and is |
| 12 | available at http://www.eclipse.org/org/documents/edl-v10.php |
| 13 | |
| 14 | All rights reserved. |
| 15 | |
| 16 | Redistribution and use in source and binary forms, with or |
| 17 | without modification, are permitted provided that the following |
| 18 | conditions are met: |
| 19 | |
| 20 | - Redistributions of source code must retain the above copyright |
| 21 | notice, this list of conditions and the following disclaimer. |
| 22 | |
| 23 | - Redistributions in binary form must reproduce the above |
| 24 | copyright notice, this list of conditions and the following |
| 25 | disclaimer in the documentation and/or other materials provided |
| 26 | with the distribution. |
| 27 | |
| 28 | - Neither the name of the Eclipse Foundation, Inc. nor the |
| 29 | names of its contributors may be used to endorse or promote |
| 30 | products derived from this software without specific prior |
| 31 | written permission. |
| 32 | |
| 33 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND |
| 34 | CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, |
| 35 | INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES |
| 36 | OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 37 | ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR |
| 38 | CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
| 39 | SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT |
| 40 | NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; |
| 41 | LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER |
| 42 | CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, |
| 43 | STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) |
| 44 | ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF |
| 45 | ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 46 | --> |
| 47 | |
| 48 | <project xmlns="http://maven.apache.org/POM/4.0.0" |
| 49 | xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 50 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> |
| 51 | <modelVersion>4.0.0</modelVersion> |
| 52 | |
| 53 | <parent> |
| 54 | <groupId>org.eclipse.jgit</groupId> |
Shawn O. Pearce | fc5fc70 | 2009-12-28 12:01:19 -0800 | [diff] [blame] | 55 | <artifactId>org.eclipse.jgit-parent</artifactId> |
Matthias Sohn | ba6ae0c | 2013-02-14 00:11:20 +0100 | [diff] [blame] | 56 | <version>2.4.0-SNAPSHOT</version> |
Shawn O. Pearce | dad52ba | 2009-10-31 18:07:26 -0700 | [diff] [blame] | 57 | </parent> |
| 58 | |
| 59 | <artifactId>org.eclipse.jgit</artifactId> |
| 60 | <name>JGit - Core</name> |
| 61 | |
| 62 | <description> |
| 63 | Repository access and algorithms |
| 64 | </description> |
| 65 | |
Matthias Sohn | 407fe63 | 2010-01-23 01:03:37 +0100 | [diff] [blame] | 66 | <properties> |
| 67 | <translate-qualifier/> |
Matthias Sohn | f8eb7e1 | 2010-10-13 15:26:33 +0200 | [diff] [blame] | 68 | <source-bundle-manifest>${project.build.directory}/META-INF/SOURCE-MANIFEST.MF</source-bundle-manifest> |
Matthias Sohn | 407fe63 | 2010-01-23 01:03:37 +0100 | [diff] [blame] | 69 | </properties> |
| 70 | |
Shawn O. Pearce | dad52ba | 2009-10-31 18:07:26 -0700 | [diff] [blame] | 71 | <dependencies> |
| 72 | <dependency> |
| 73 | <groupId>com.jcraft</groupId> |
| 74 | <artifactId>jsch</artifactId> |
| 75 | </dependency> |
Colby Ranger | 3b32591 | 2012-08-28 09:08:20 -0700 | [diff] [blame^] | 76 | |
| 77 | <dependency> |
| 78 | <groupId>com.googlecode.javaewah</groupId> |
| 79 | <artifactId>JavaEWAH</artifactId> |
| 80 | </dependency> |
Shawn O. Pearce | dad52ba | 2009-10-31 18:07:26 -0700 | [diff] [blame] | 81 | </dependencies> |
| 82 | |
| 83 | <build> |
| 84 | <sourceDirectory>src/</sourceDirectory> |
| 85 | |
| 86 | <resources> |
| 87 | <resource> |
| 88 | <directory>.</directory> |
| 89 | <includes> |
| 90 | <include>plugin.properties</include> |
Matthias Sohn | e1af16a | 2011-06-08 22:42:20 +0200 | [diff] [blame] | 91 | <include>about.html</include> |
Matthias Sohn | e0910edf | 2012-03-03 00:53:00 +0100 | [diff] [blame] | 92 | <include>META-INF/eclipse.inf</include> |
Shawn O. Pearce | dad52ba | 2009-10-31 18:07:26 -0700 | [diff] [blame] | 93 | </includes> |
| 94 | </resource> |
Sasa Zivkov | f3d8a8e | 2010-05-19 16:59:28 +0200 | [diff] [blame] | 95 | <resource> |
| 96 | <directory>resources/</directory> |
| 97 | </resource> |
Shawn O. Pearce | dad52ba | 2009-10-31 18:07:26 -0700 | [diff] [blame] | 98 | </resources> |
Igor Fedorenko | 96c7f75 | 2009-12-05 01:07:42 -0500 | [diff] [blame] | 99 | |
Shawn O. Pearce | fc5fc70 | 2009-12-28 12:01:19 -0800 | [diff] [blame] | 100 | <plugins> |
| 101 | <plugin> |
Matthias Sohn | f8eb7e1 | 2010-10-13 15:26:33 +0200 | [diff] [blame] | 102 | <groupId>org.apache.maven.plugins</groupId> |
| 103 | <artifactId>maven-antrun-plugin</artifactId> |
| 104 | <executions> |
| 105 | <execution> |
| 106 | <id>translate-source-qualifier</id> |
| 107 | <phase>generate-resources</phase> |
| 108 | <configuration> |
| 109 | <tasks> |
| 110 | <copy file="META-INF/SOURCE-MANIFEST.MF" tofile="${source-bundle-manifest}" overwrite="true"/> |
| 111 | <replace file="${source-bundle-manifest}"> |
| 112 | <replacefilter token=".qualifier" value=".${maven.build.timestamp}"/> |
| 113 | </replace> |
| 114 | </tasks> |
| 115 | </configuration> |
| 116 | <goals> |
| 117 | <goal>run</goal> |
| 118 | </goals> |
| 119 | </execution> |
| 120 | </executions> |
| 121 | </plugin> |
| 122 | |
| 123 | <plugin> |
| 124 | <groupId>org.apache.maven.plugins</groupId> |
| 125 | <artifactId>maven-source-plugin</artifactId> |
| 126 | <inherited>true</inherited> |
| 127 | <executions> |
| 128 | <execution> |
| 129 | <id>attach-sources</id> |
| 130 | <phase>process-classes</phase> |
| 131 | <goals> |
| 132 | <goal>jar</goal> |
| 133 | </goals> |
| 134 | <configuration> |
| 135 | <archive> |
| 136 | <manifestFile>${source-bundle-manifest}</manifestFile> |
| 137 | </archive> |
| 138 | </configuration> |
| 139 | </execution> |
| 140 | </executions> |
| 141 | </plugin> |
| 142 | |
| 143 | <plugin> |
Shawn O. Pearce | fc5fc70 | 2009-12-28 12:01:19 -0800 | [diff] [blame] | 144 | <artifactId>maven-jar-plugin</artifactId> |
| 145 | <configuration> |
| 146 | <archive> |
Matthias Sohn | 407fe63 | 2010-01-23 01:03:37 +0100 | [diff] [blame] | 147 | <manifestFile>${bundle-manifest}</manifestFile> |
Shawn O. Pearce | fc5fc70 | 2009-12-28 12:01:19 -0800 | [diff] [blame] | 148 | </archive> |
| 149 | </configuration> |
| 150 | </plugin> |
Matthias Sohn | e178ba2 | 2011-12-15 15:50:46 -0800 | [diff] [blame] | 151 | |
| 152 | <plugin> |
| 153 | <groupId>org.codehaus.mojo</groupId> |
| 154 | <artifactId>clirr-maven-plugin</artifactId> |
| 155 | </plugin> |
Shawn O. Pearce | fc5fc70 | 2009-12-28 12:01:19 -0800 | [diff] [blame] | 156 | </plugins> |
Matthias Sohn | e178ba2 | 2011-12-15 15:50:46 -0800 | [diff] [blame] | 157 | |
Matthias Sohn | df85978 | 2011-04-16 02:08:24 +0200 | [diff] [blame] | 158 | <pluginManagement> |
| 159 | <plugins> |
| 160 | <plugin> |
| 161 | <groupId>org.codehaus.mojo</groupId> |
| 162 | <artifactId>findbugs-maven-plugin</artifactId> |
| 163 | <configuration> |
| 164 | <excludeFilterFile>findBugs/FindBugsExcludeFilter.xml</excludeFilterFile> |
| 165 | </configuration> |
| 166 | </plugin> |
| 167 | </plugins> |
| 168 | </pluginManagement> |
Shawn O. Pearce | fc5fc70 | 2009-12-28 12:01:19 -0800 | [diff] [blame] | 169 | </build> |
Matthias Sohn | e178ba2 | 2011-12-15 15:50:46 -0800 | [diff] [blame] | 170 | |
| 171 | <reporting> |
| 172 | <plugins> |
| 173 | <plugin> |
| 174 | <groupId>org.codehaus.mojo</groupId> |
| 175 | <artifactId>clirr-maven-plugin</artifactId> |
| 176 | <version>${clirr-version}</version> |
| 177 | <configuration> |
| 178 | <comparisonVersion>${jgit-last-release-version}</comparisonVersion> |
| 179 | <minSeverity>info</minSeverity> |
| 180 | </configuration> |
| 181 | </plugin> |
| 182 | </plugins> |
| 183 | </reporting> |
Shawn O. Pearce | dad52ba | 2009-10-31 18:07:26 -0700 | [diff] [blame] | 184 | </project> |