xref: /JGit/org.eclipse.jgit.lfs/pom.xml (revision 536db18cc62afab2d38aac5b2af73f575f40d8b6)
1*536db18cSMatthias Sohn<?xml version="1.0" encoding="UTF-8"?>
2*536db18cSMatthias Sohn<!--
3*536db18cSMatthias Sohn   Copyright (C) 2015, Matthias Sohn <matthias.sohn@sap.com>
4*536db18cSMatthias Sohn   and other copyright owners as documented in the project's IP log.
5*536db18cSMatthias Sohn
6*536db18cSMatthias Sohn   This program and the accompanying materials are made available
7*536db18cSMatthias Sohn   under the terms of the Eclipse Distribution License v1.0 which
8*536db18cSMatthias Sohn   accompanies this distribution, is reproduced below, and is
9*536db18cSMatthias Sohn   available at http://www.eclipse.org/org/documents/edl-v10.php
10*536db18cSMatthias Sohn
11*536db18cSMatthias Sohn   All rights reserved.
12*536db18cSMatthias Sohn
13*536db18cSMatthias Sohn   Redistribution and use in source and binary forms, with or
14*536db18cSMatthias Sohn   without modification, are permitted provided that the following
15*536db18cSMatthias Sohn   conditions are met:
16*536db18cSMatthias Sohn
17*536db18cSMatthias Sohn   - Redistributions of source code must retain the above copyright
18*536db18cSMatthias Sohn     notice, this list of conditions and the following disclaimer.
19*536db18cSMatthias Sohn
20*536db18cSMatthias Sohn   - Redistributions in binary form must reproduce the above
21*536db18cSMatthias Sohn     copyright notice, this list of conditions and the following
22*536db18cSMatthias Sohn     disclaimer in the documentation and/or other materials provided
23*536db18cSMatthias Sohn     with the distribution.
24*536db18cSMatthias Sohn
25*536db18cSMatthias Sohn   - Neither the name of the Eclipse Foundation, Inc. nor the
26*536db18cSMatthias Sohn     names of its contributors may be used to endorse or promote
27*536db18cSMatthias Sohn     products derived from this software without specific prior
28*536db18cSMatthias Sohn     written permission.
29*536db18cSMatthias Sohn
30*536db18cSMatthias Sohn   THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND
31*536db18cSMatthias Sohn   CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES,
32*536db18cSMatthias Sohn   INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
33*536db18cSMatthias Sohn   OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
34*536db18cSMatthias Sohn   ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
35*536db18cSMatthias Sohn   CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
36*536db18cSMatthias Sohn   SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
37*536db18cSMatthias Sohn   NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
38*536db18cSMatthias Sohn   LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
39*536db18cSMatthias Sohn   CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
40*536db18cSMatthias Sohn   STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
41*536db18cSMatthias Sohn   ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
42*536db18cSMatthias Sohn   ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
43*536db18cSMatthias Sohn-->
44*536db18cSMatthias Sohn
45*536db18cSMatthias Sohn<project xmlns="http://maven.apache.org/POM/4.0.0"
46*536db18cSMatthias Sohn    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
47*536db18cSMatthias Sohn    xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
48*536db18cSMatthias Sohn  <modelVersion>4.0.0</modelVersion>
49*536db18cSMatthias Sohn
50*536db18cSMatthias Sohn  <parent>
51*536db18cSMatthias Sohn    <groupId>org.eclipse.jgit</groupId>
52*536db18cSMatthias Sohn    <artifactId>org.eclipse.jgit-parent</artifactId>
53*536db18cSMatthias Sohn    <version>4.3.0-SNAPSHOT</version>
54*536db18cSMatthias Sohn  </parent>
55*536db18cSMatthias Sohn
56*536db18cSMatthias Sohn  <artifactId>org.eclipse.jgit.lfs</artifactId>
57*536db18cSMatthias Sohn  <name>JGit - Large File Storage</name>
58*536db18cSMatthias Sohn
59*536db18cSMatthias Sohn  <description>
60*536db18cSMatthias Sohn    JGit Large File Storage (LFS) implementation.
61*536db18cSMatthias Sohn  </description>
62*536db18cSMatthias Sohn
63*536db18cSMatthias Sohn  <properties>
64*536db18cSMatthias Sohn    <translate-qualifier/>
65*536db18cSMatthias Sohn  </properties>
66*536db18cSMatthias Sohn
67*536db18cSMatthias Sohn  <dependencies>
68*536db18cSMatthias Sohn    <dependency>
69*536db18cSMatthias Sohn      <groupId>org.eclipse.jgit</groupId>
70*536db18cSMatthias Sohn      <artifactId>org.eclipse.jgit</artifactId>
71*536db18cSMatthias Sohn      <version>${project.version}</version>
72*536db18cSMatthias Sohn    </dependency>
73*536db18cSMatthias Sohn  </dependencies>
74*536db18cSMatthias Sohn  <build>
75*536db18cSMatthias Sohn    <sourceDirectory>src/</sourceDirectory>
76*536db18cSMatthias Sohn
77*536db18cSMatthias Sohn    <resources>
78*536db18cSMatthias Sohn      <resource>
79*536db18cSMatthias Sohn        <directory>.</directory>
80*536db18cSMatthias Sohn        <includes>
81*536db18cSMatthias Sohn          <include>plugin.properties</include>
82*536db18cSMatthias Sohn          <include>about.html</include>
83*536db18cSMatthias Sohn        </includes>
84*536db18cSMatthias Sohn      </resource>
85*536db18cSMatthias Sohn      <resource>
86*536db18cSMatthias Sohn        <directory>resources/</directory>
87*536db18cSMatthias Sohn      </resource>
88*536db18cSMatthias Sohn    </resources>
89*536db18cSMatthias Sohn
90*536db18cSMatthias Sohn    <plugins>
91*536db18cSMatthias Sohn      <plugin>
92*536db18cSMatthias Sohn        <groupId>org.apache.maven.plugins</groupId>
93*536db18cSMatthias Sohn        <artifactId>maven-source-plugin</artifactId>
94*536db18cSMatthias Sohn        <inherited>true</inherited>
95*536db18cSMatthias Sohn        <executions>
96*536db18cSMatthias Sohn          <execution>
97*536db18cSMatthias Sohn            <id>attach-sources</id>
98*536db18cSMatthias Sohn            <phase>process-classes</phase>
99*536db18cSMatthias Sohn            <goals>
100*536db18cSMatthias Sohn              <goal>jar</goal>
101*536db18cSMatthias Sohn            </goals>
102*536db18cSMatthias Sohn            <configuration>
103*536db18cSMatthias Sohn              <archive>
104*536db18cSMatthias Sohn                <manifestFile>${source-bundle-manifest}</manifestFile>
105*536db18cSMatthias Sohn              </archive>
106*536db18cSMatthias Sohn            </configuration>
107*536db18cSMatthias Sohn          </execution>
108*536db18cSMatthias Sohn        </executions>
109*536db18cSMatthias Sohn      </plugin>
110*536db18cSMatthias Sohn
111*536db18cSMatthias Sohn      <plugin>
112*536db18cSMatthias Sohn        <artifactId>maven-jar-plugin</artifactId>
113*536db18cSMatthias Sohn        <configuration>
114*536db18cSMatthias Sohn          <archive>
115*536db18cSMatthias Sohn            <manifestFile>${bundle-manifest}</manifestFile>
116*536db18cSMatthias Sohn          </archive>
117*536db18cSMatthias Sohn        </configuration>
118*536db18cSMatthias Sohn      </plugin>
119*536db18cSMatthias Sohn
120*536db18cSMatthias Sohn      <plugin>
121*536db18cSMatthias Sohn        <groupId>org.codehaus.mojo</groupId>
122*536db18cSMatthias Sohn        <artifactId>clirr-maven-plugin</artifactId>
123*536db18cSMatthias Sohn      </plugin>
124*536db18cSMatthias Sohn    </plugins>
125*536db18cSMatthias Sohn  </build>
126*536db18cSMatthias Sohn
127*536db18cSMatthias Sohn  <reporting>
128*536db18cSMatthias Sohn    <plugins>
129*536db18cSMatthias Sohn      <plugin>
130*536db18cSMatthias Sohn        <groupId>org.codehaus.mojo</groupId>
131*536db18cSMatthias Sohn        <artifactId>clirr-maven-plugin</artifactId>
132*536db18cSMatthias Sohn        <version>${clirr-version}</version>
133*536db18cSMatthias Sohn        <configuration>
134*536db18cSMatthias Sohn          <comparisonVersion>${jgit-last-release-version}</comparisonVersion>
135*536db18cSMatthias Sohn          <minSeverity>info</minSeverity>
136*536db18cSMatthias Sohn        </configuration>
137*536db18cSMatthias Sohn      </plugin>
138*536db18cSMatthias Sohn    </plugins>
139*536db18cSMatthias Sohn  </reporting>
140*536db18cSMatthias Sohn</project>
141