xref: /JGit/org.eclipse.jgit.lfs.server/pom.xml (revision f496177a378705600c65bb297527952a420b25fe)
13bae524fSMatthias Sohn<?xml version="1.0" encoding="UTF-8"?>
23bae524fSMatthias Sohn<!--
33bae524fSMatthias Sohn   Copyright (C) 2015, Matthias Sohn <matthias.sohn@sap.com>
43bae524fSMatthias Sohn   and other copyright owners as documented in the project's IP log.
53bae524fSMatthias Sohn
63bae524fSMatthias Sohn   This program and the accompanying materials are made available
73bae524fSMatthias Sohn   under the terms of the Eclipse Distribution License v1.0 which
83bae524fSMatthias Sohn   accompanies this distribution, is reproduced below, and is
93bae524fSMatthias Sohn   available at http://www.eclipse.org/org/documents/edl-v10.php
103bae524fSMatthias Sohn
113bae524fSMatthias Sohn   All rights reserved.
123bae524fSMatthias Sohn
133bae524fSMatthias Sohn   Redistribution and use in source and binary forms, with or
143bae524fSMatthias Sohn   without modification, are permitted provided that the following
153bae524fSMatthias Sohn   conditions are met:
163bae524fSMatthias Sohn
173bae524fSMatthias Sohn   - Redistributions of source code must retain the above copyright
183bae524fSMatthias Sohn     notice, this list of conditions and the following disclaimer.
193bae524fSMatthias Sohn
203bae524fSMatthias Sohn   - Redistributions in binary form must reproduce the above
213bae524fSMatthias Sohn     copyright notice, this list of conditions and the following
223bae524fSMatthias Sohn     disclaimer in the documentation and/or other materials provided
233bae524fSMatthias Sohn     with the distribution.
243bae524fSMatthias Sohn
253bae524fSMatthias Sohn   - Neither the name of the Eclipse Foundation, Inc. nor the
263bae524fSMatthias Sohn     names of its contributors may be used to endorse or promote
273bae524fSMatthias Sohn     products derived from this software without specific prior
283bae524fSMatthias Sohn     written permission.
293bae524fSMatthias Sohn
303bae524fSMatthias Sohn   THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND
313bae524fSMatthias Sohn   CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES,
323bae524fSMatthias Sohn   INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
333bae524fSMatthias Sohn   OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
343bae524fSMatthias Sohn   ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
353bae524fSMatthias Sohn   CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
363bae524fSMatthias Sohn   SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
373bae524fSMatthias Sohn   NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
383bae524fSMatthias Sohn   LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
393bae524fSMatthias Sohn   CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
403bae524fSMatthias Sohn   STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
413bae524fSMatthias Sohn   ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
423bae524fSMatthias Sohn   ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
433bae524fSMatthias Sohn-->
443bae524fSMatthias Sohn
453bae524fSMatthias Sohn<project xmlns="http://maven.apache.org/POM/4.0.0"
463bae524fSMatthias Sohn    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
473bae524fSMatthias Sohn    xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
483bae524fSMatthias Sohn  <modelVersion>4.0.0</modelVersion>
493bae524fSMatthias Sohn
503bae524fSMatthias Sohn  <parent>
513bae524fSMatthias Sohn    <groupId>org.eclipse.jgit</groupId>
523bae524fSMatthias Sohn    <artifactId>org.eclipse.jgit-parent</artifactId>
533bae524fSMatthias Sohn    <version>4.3.0-SNAPSHOT</version>
543bae524fSMatthias Sohn  </parent>
553bae524fSMatthias Sohn
563bae524fSMatthias Sohn  <artifactId>org.eclipse.jgit.lfs.server</artifactId>
573bae524fSMatthias Sohn  <name>JGit - Large File Storage Server</name>
583bae524fSMatthias Sohn
593bae524fSMatthias Sohn  <description>
603bae524fSMatthias Sohn    JGit Large File Storage Server implementation.
613bae524fSMatthias Sohn  </description>
623bae524fSMatthias Sohn
633bae524fSMatthias Sohn  <properties>
643bae524fSMatthias Sohn    <translate-qualifier/>
653bae524fSMatthias Sohn  </properties>
663bae524fSMatthias Sohn
673bae524fSMatthias Sohn  <dependencies>
683bae524fSMatthias Sohn    <dependency>
693bae524fSMatthias Sohn      <groupId>org.eclipse.jgit</groupId>
703bae524fSMatthias Sohn      <artifactId>org.eclipse.jgit</artifactId>
713bae524fSMatthias Sohn      <version>${project.version}</version>
723bae524fSMatthias Sohn    </dependency>
733bae524fSMatthias Sohn
743bae524fSMatthias Sohn    <dependency>
753bae524fSMatthias Sohn      <groupId>org.eclipse.jgit</groupId>
763bae524fSMatthias Sohn      <artifactId>org.eclipse.jgit.lfs</artifactId>
773bae524fSMatthias Sohn      <version>${project.version}</version>
783bae524fSMatthias Sohn    </dependency>
793bae524fSMatthias Sohn
803bae524fSMatthias Sohn    <dependency>
81*f496177aSMatthias Sohn      <groupId>org.eclipse.jgit</groupId>
82*f496177aSMatthias Sohn      <artifactId>org.eclipse.jgit.http.apache</artifactId>
83*f496177aSMatthias Sohn      <version>${project.version}</version>
84*f496177aSMatthias Sohn    </dependency>
85*f496177aSMatthias Sohn
86*f496177aSMatthias Sohn    <dependency>
873bae524fSMatthias Sohn      <groupId>javax.servlet</groupId>
883bae524fSMatthias Sohn      <artifactId>javax.servlet-api</artifactId>
893bae524fSMatthias Sohn      <scope>provided</scope>
903bae524fSMatthias Sohn    </dependency>
913bae524fSMatthias Sohn
923bae524fSMatthias Sohn    <dependency>
933bae524fSMatthias Sohn      <groupId>com.google.code.gson</groupId>
943bae524fSMatthias Sohn      <artifactId>gson</artifactId>
953bae524fSMatthias Sohn    </dependency>
963bae524fSMatthias Sohn  </dependencies>
973bae524fSMatthias Sohn
983bae524fSMatthias Sohn  <build>
993bae524fSMatthias Sohn    <sourceDirectory>src/</sourceDirectory>
1003bae524fSMatthias Sohn
1013bae524fSMatthias Sohn    <resources>
1023bae524fSMatthias Sohn      <resource>
1033bae524fSMatthias Sohn        <directory>.</directory>
1043bae524fSMatthias Sohn        <includes>
1053bae524fSMatthias Sohn          <include>plugin.properties</include>
1063bae524fSMatthias Sohn          <include>about.html</include>
1073bae524fSMatthias Sohn        </includes>
1083bae524fSMatthias Sohn      </resource>
1093bae524fSMatthias Sohn      <resource>
1103bae524fSMatthias Sohn        <directory>resources/</directory>
1113bae524fSMatthias Sohn      </resource>
1123bae524fSMatthias Sohn    </resources>
1133bae524fSMatthias Sohn
1143bae524fSMatthias Sohn    <plugins>
1153bae524fSMatthias Sohn      <plugin>
1163bae524fSMatthias Sohn        <groupId>org.apache.maven.plugins</groupId>
1173bae524fSMatthias Sohn        <artifactId>maven-source-plugin</artifactId>
1183bae524fSMatthias Sohn        <inherited>true</inherited>
1193bae524fSMatthias Sohn        <executions>
1203bae524fSMatthias Sohn          <execution>
1213bae524fSMatthias Sohn            <id>attach-sources</id>
1223bae524fSMatthias Sohn            <phase>process-classes</phase>
1233bae524fSMatthias Sohn            <goals>
1243bae524fSMatthias Sohn              <goal>jar</goal>
1253bae524fSMatthias Sohn            </goals>
1263bae524fSMatthias Sohn            <configuration>
1273bae524fSMatthias Sohn              <archive>
1283bae524fSMatthias Sohn                <manifestFile>${source-bundle-manifest}</manifestFile>
1293bae524fSMatthias Sohn              </archive>
1303bae524fSMatthias Sohn            </configuration>
1313bae524fSMatthias Sohn          </execution>
1323bae524fSMatthias Sohn        </executions>
1333bae524fSMatthias Sohn      </plugin>
1343bae524fSMatthias Sohn
1353bae524fSMatthias Sohn      <plugin>
1363bae524fSMatthias Sohn        <artifactId>maven-jar-plugin</artifactId>
1373bae524fSMatthias Sohn        <configuration>
1383bae524fSMatthias Sohn          <archive>
1393bae524fSMatthias Sohn            <manifestFile>${bundle-manifest}</manifestFile>
1403bae524fSMatthias Sohn          </archive>
1413bae524fSMatthias Sohn        </configuration>
1423bae524fSMatthias Sohn      </plugin>
1433bae524fSMatthias Sohn
1443bae524fSMatthias Sohn      <plugin>
1453bae524fSMatthias Sohn        <groupId>org.codehaus.mojo</groupId>
1463bae524fSMatthias Sohn        <artifactId>clirr-maven-plugin</artifactId>
1473bae524fSMatthias Sohn      </plugin>
1483bae524fSMatthias Sohn    </plugins>
1493bae524fSMatthias Sohn  </build>
1503bae524fSMatthias Sohn
1513bae524fSMatthias Sohn  <reporting>
1523bae524fSMatthias Sohn    <plugins>
1533bae524fSMatthias Sohn      <plugin>
1543bae524fSMatthias Sohn        <groupId>org.codehaus.mojo</groupId>
1553bae524fSMatthias Sohn        <artifactId>clirr-maven-plugin</artifactId>
1563bae524fSMatthias Sohn        <version>${clirr-version}</version>
1573bae524fSMatthias Sohn        <configuration>
1583bae524fSMatthias Sohn          <comparisonVersion>${jgit-last-release-version}</comparisonVersion>
1593bae524fSMatthias Sohn          <minSeverity>info</minSeverity>
1603bae524fSMatthias Sohn        </configuration>
1613bae524fSMatthias Sohn      </plugin>
1623bae524fSMatthias Sohn    </plugins>
1633bae524fSMatthias Sohn  </reporting>
1643bae524fSMatthias Sohn</project>
165