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