Fixed bug in scoring mechanism for rename detection
[jgit.git] / pom.xml
blob60c4ed69a78d307a8870e5b2c0bc8307a3c4cb11
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3    Copyright (C) 2009-2010, Google Inc.
4    and other copyright owners as documented in the project's IP log.
6    This program and the accompanying materials are made available
7    under the terms of the Eclipse Distribution License v1.0 which
8    accompanies this distribution, is reproduced below, and is
9    available at http://www.eclipse.org/org/documents/edl-v10.php
11    All rights reserved.
13    Redistribution and use in source and binary forms, with or
14    without modification, are permitted provided that the following
15    conditions are met:
17    - Redistributions of source code must retain the above copyright
18      notice, this list of conditions and the following disclaimer.
20    - Redistributions in binary form must reproduce the above
21      copyright notice, this list of conditions and the following
22      disclaimer in the documentation and/or other materials provided
23      with the distribution.
25    - Neither the name of the Eclipse Foundation, Inc. nor the
26      names of its contributors may be used to endorse or promote
27      products derived from this software without specific prior
28      written permission.
30    THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND
31    CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES,
32    INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
33    OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
34    ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
35    CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
36    SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
37    NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
38    LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
39    CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
40    STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
41    ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
42    ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
43 -->
45 <project xmlns="http://maven.apache.org/POM/4.0.0"
46     xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
47     xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
48   <modelVersion>4.0.0</modelVersion>
50   <groupId>org.eclipse.jgit</groupId>
51   <artifactId>org.eclipse.jgit-parent</artifactId>
52   <packaging>pom</packaging>
53   <version>0.9.0-SNAPSHOT</version>
55   <name>JGit - Parent</name>
56   <url>${jgit-url}</url>
58   <description>
59     Pure Java implementation of Git
60   </description>
62   <mailingLists>
63     <mailingList>
64       <name>jgit-dev Mailing List</name>
65       <post>jgit-dev@eclipse.org</post>
66       <subscribe>https://dev.eclipse.org/mailman/listinfo/jgit-dev</subscribe>
67       <unsubscribe>https://dev.eclipse.org/mailman/listinfo/jgit-dev</unsubscribe>
68       <archive>http://dev.eclipse.org/mhonarc/lists/jgit-dev</archive>
69     </mailingList>
71     <mailingList>
72       <name>GIT Mailing List</name>
73       <post>git@vger.kernel.org</post>
74       <archive>http://marc.info/?l=git</archive>
75     </mailingList>
76   </mailingLists>
78   <issueManagement>
79     <url>https://bugs.eclipse.org/bugs/buglist.cgi?query_format=advanced;component=JGit;product=JGit;classification=Technology</url>
80     <system>Bugzilla</system>
81   </issueManagement>
83   <licenses>
84     <license>
85       <name>Eclipse Distribution License (New BSD License)</name>
86       <comments>
87        All rights reserved.
89        Redistribution and use in source and binary forms, with or
90        without modification, are permitted provided that the following
91        conditions are met:
93        - Redistributions of source code must retain the above copyright
94          notice, this list of conditions and the following disclaimer.
96        - Redistributions in binary form must reproduce the above
97          copyright notice, this list of conditions and the following
98          disclaimer in the documentation and/or other materials provided
99          with the distribution.
101        - Neither the name of the Eclipse Foundation, Inc. nor the
102          names of its contributors may be used to endorse or promote
103          products derived from this software without specific prior
104          written permission.
106        THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND
107        CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES,
108        INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
109        OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
110        ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
111        CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
112        SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
113        NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
114        LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
115        CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
116        STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
117        ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
118        ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
119       </comments>
120     </license>
121   </licenses>
123   <properties>
124     <jgit-url>http://www.eclipse.org/jgit/</jgit-url>
125     <jgit-copyright>Copyright (c) 2005, 2009 Shawn Pearce, Robin Rosenberg, et.al.</jgit-copyright>
127     <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
128     <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
130     <maven.build.timestamp.format>yyyyMMddHHmm</maven.build.timestamp.format>
131     <bundle-manifest>${project.build.directory}/META-INF/MANIFEST.MF</bundle-manifest>
133     <jsch-version>0.1.41</jsch-version>
134     <junit-version>3.8.2</junit-version>
135     <args4j-version>2.0.12</args4j-version>
136     <servlet-api-version>2.5</servlet-api-version>
137     <jetty-version>7.0.1.v20091125</jetty-version>
138   </properties>
140   <build>
141     <pluginManagement>
142       <plugins>
143         <plugin>
144           <groupId>org.apache.maven.plugins</groupId>
145           <artifactId>maven-jar-plugin</artifactId>
146           <version>2.3</version>
147           <configuration>
148             <archive>
149               <manifestEntries>
150                 <Implementation-Title>JGit ${project.artifactId}</Implementation-Title>
151                 <Implementation-Version>${project.version}</Implementation-Version>
152                 <Implementation-Vendor>Eclipse.org - JGit</Implementation-Vendor>
153                 <Implementation-Vendor-Id>org.eclipse.jgit</Implementation-Vendor-Id>
154                 <Implementation-Vendor-URL>${jgit-url}</Implementation-Vendor-URL>
155               </manifestEntries>
156             </archive>
157           </configuration>
158         </plugin>
160         <plugin>
161           <artifactId>maven-compiler-plugin</artifactId>
162           <version>2.0.2</version>
163         </plugin>
165         <plugin>
166           <artifactId>maven-clean-plugin</artifactId>
167           <version>2.2</version>
168         </plugin>
170         <plugin>
171           <groupId>org.apache.maven.plugins</groupId>
172           <artifactId>maven-shade-plugin</artifactId>
173           <version>1.2</version>
174         </plugin>
176         <plugin>
177           <groupId>org.apache.maven.plugins</groupId>
178           <artifactId>maven-antrun-plugin</artifactId>
179           <version>1.3</version>
180         </plugin>
182         <plugin>
183           <groupId>org.apache.maven.plugins</groupId>
184           <artifactId>maven-dependency-plugin</artifactId>
185           <version>2.1</version>
186         </plugin>
188         <plugin>
189           <groupId>org.apache.maven.plugins</groupId>
190           <artifactId>maven-source-plugin</artifactId>
191           <version>2.1.1</version>
192         </plugin>
194         <plugin>
195           <groupId>org.apache.maven.plugins</groupId>
196           <artifactId>maven-javadoc-plugin</artifactId>
197           <version>2.7</version>
198         </plugin>
200         <plugin>
201           <groupId>org.codehaus.mojo</groupId>
202           <artifactId>build-helper-maven-plugin</artifactId>
203           <version>1.3</version>
204         </plugin>
205       </plugins>
206     </pluginManagement>
208     <plugins>
209       <plugin>
210         <artifactId>maven-compiler-plugin</artifactId>
211         <configuration>
212           <source>1.5</source>
213           <target>1.5</target>
214           <encoding>UTF-8</encoding>
215         </configuration>
216       </plugin>
218       <plugin>
219         <groupId>org.apache.maven.plugins</groupId>
220         <artifactId>maven-antrun-plugin</artifactId>
221         <executions>
222           <execution>
223             <id>translate-qualifier</id>
224             <phase>generate-resources</phase>
225             <configuration>
226               <tasks unless="${translate-qualifier}">
227                 <copy file="META-INF/MANIFEST.MF" tofile="${bundle-manifest}" overwrite="true"/>
228                 <replace file="${bundle-manifest}">
229                   <replacefilter token=".qualifier" value=".${maven.build.timestamp}"/>
230                 </replace>
231               </tasks>
232             </configuration>
233             <goals>
234               <goal>run</goal>
235             </goals>
236           </execution>
237         </executions>
238       </plugin>
240       <plugin>
241         <groupId>org.apache.maven.plugins</groupId>
242         <artifactId>maven-source-plugin</artifactId>
243         <executions>
244           <execution>
245             <id>attach-sources</id>
246             <goals>
247               <goal>jar</goal>
248             </goals>
249           </execution>
250         </executions>
251       </plugin>
253       <plugin>
254         <groupId>org.apache.maven.plugins</groupId>
255         <artifactId>maven-javadoc-plugin</artifactId>
256         <configuration>
257           <encoding>${project.build.sourceEncoding}</encoding>
258           <quiet>true</quiet>
259           <links>
260             <link>http://java.sun.com/j2se/1.5.0/docs/api</link>
261           </links>
262         </configuration>
263         <executions>
264           <execution>
265             <id>attach-javadocs</id>
266             <goals>
267               <goal>jar</goal>
268             </goals>
269           </execution>
270         </executions>
271       </plugin>
272     </plugins>
273   </build>
275   <dependencyManagement>
276     <dependencies>
277       <dependency>
278         <groupId>com.jcraft</groupId>
279         <artifactId>jsch</artifactId>
280         <version>${jsch-version}</version>
281       </dependency>
283       <dependency>
284         <groupId>args4j</groupId>
285         <artifactId>args4j</artifactId>
286         <version>${args4j-version}</version>
287       </dependency>
289       <dependency>
290         <groupId>junit</groupId>
291         <artifactId>junit</artifactId>
292         <version>${junit-version}</version>
293       </dependency>
295       <dependency>
296         <groupId>javax.servlet</groupId>
297         <artifactId>servlet-api</artifactId>
298         <version>${servlet-api-version}</version>
299       </dependency>
301       <dependency>
302         <groupId>org.eclipse.jetty</groupId>
303         <artifactId>jetty-servlet</artifactId>
304         <version>${jetty-version}</version>
305       </dependency>
306     </dependencies>
307   </dependencyManagement>
309   <distributionManagement>
310     <snapshotRepository>
311       <id>jgit-maven-snapshot</id>
312       <name>JGit Maven Repository</name>
313       <url>dav:https://egit.googlecode.com/svn/maven/</url>
314       <uniqueVersion>true</uniqueVersion>
315     </snapshotRepository>
316   </distributionManagement>
318   <profiles>
319     <!-- Set -Djgit.java6.skip=true to compile with only Java 5 -->
320     <profile>
321       <id>jgit.java6</id>
322       <activation>
323         <property>
324           <name>!jgit.java6.skip</name>
325         </property>
326       </activation>
327       <modules>
328         <module>org.eclipse.jgit.console</module>
329       </modules>
330     </profile>
331   </profiles>
333   <modules>
334     <module>org.eclipse.jgit</module>
335     <module>org.eclipse.jgit.ui</module>
336     <module>org.eclipse.jgit.http.server</module>
337     <module>org.eclipse.jgit.iplog</module>
338     <module>org.eclipse.jgit.pgm</module>
339     <module>org.eclipse.jgit.junit</module>
341     <module>org.eclipse.jgit.test</module>
342     <module>org.eclipse.jgit.http.test</module>
343   </modules>
344 </project>