xref: /JGit/org.eclipse.jgit.http.server/pom.xml (revision 100179a101f1fd9ce281397574d7ad729f08953a)
15e33a1deSShawn O. Pearce<?xml version="1.0" encoding="UTF-8"?>
25e33a1deSShawn O. Pearce<!--
35e33a1deSShawn O. Pearce   Copyright (C) 2009-2010, Google Inc.
45e33a1deSShawn O. Pearce   Copyright (C) 2008, Imran M Yousuf <imyousuf@smartitengineering.com>
5407fe631SMatthias Sohn   Copyright (C) 2010, Matthias Sohn <matthias.sohn@sap.com>
65e33a1deSShawn O. Pearce   and other copyright owners as documented in the project's IP log.
75e33a1deSShawn O. Pearce
85e33a1deSShawn O. Pearce   This program and the accompanying materials are made available
95e33a1deSShawn O. Pearce   under the terms of the Eclipse Distribution License v1.0 which
105e33a1deSShawn O. Pearce   accompanies this distribution, is reproduced below, and is
115e33a1deSShawn O. Pearce   available at http://www.eclipse.org/org/documents/edl-v10.php
125e33a1deSShawn O. Pearce
135e33a1deSShawn O. Pearce   All rights reserved.
145e33a1deSShawn O. Pearce
155e33a1deSShawn O. Pearce   Redistribution and use in source and binary forms, with or
165e33a1deSShawn O. Pearce   without modification, are permitted provided that the following
175e33a1deSShawn O. Pearce   conditions are met:
185e33a1deSShawn O. Pearce
195e33a1deSShawn O. Pearce   - Redistributions of source code must retain the above copyright
205e33a1deSShawn O. Pearce     notice, this list of conditions and the following disclaimer.
215e33a1deSShawn O. Pearce
225e33a1deSShawn O. Pearce   - Redistributions in binary form must reproduce the above
235e33a1deSShawn O. Pearce     copyright notice, this list of conditions and the following
245e33a1deSShawn O. Pearce     disclaimer in the documentation and/or other materials provided
255e33a1deSShawn O. Pearce     with the distribution.
265e33a1deSShawn O. Pearce
275e33a1deSShawn O. Pearce   - Neither the name of the Eclipse Foundation, Inc. nor the
285e33a1deSShawn O. Pearce     names of its contributors may be used to endorse or promote
295e33a1deSShawn O. Pearce     products derived from this software without specific prior
305e33a1deSShawn O. Pearce     written permission.
315e33a1deSShawn O. Pearce
325e33a1deSShawn O. Pearce   THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND
335e33a1deSShawn O. Pearce   CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES,
345e33a1deSShawn O. Pearce   INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
355e33a1deSShawn O. Pearce   OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
365e33a1deSShawn O. Pearce   ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
375e33a1deSShawn O. Pearce   CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
385e33a1deSShawn O. Pearce   SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
395e33a1deSShawn O. Pearce   NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
405e33a1deSShawn O. Pearce   LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
415e33a1deSShawn O. Pearce   CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
425e33a1deSShawn O. Pearce   STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
435e33a1deSShawn O. Pearce   ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
445e33a1deSShawn O. Pearce   ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
455e33a1deSShawn O. Pearce-->
465e33a1deSShawn O. Pearce
475e33a1deSShawn O. Pearce<project xmlns="http://maven.apache.org/POM/4.0.0"
485e33a1deSShawn O. Pearce    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
495e33a1deSShawn O. Pearce    xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
505e33a1deSShawn O. Pearce  <modelVersion>4.0.0</modelVersion>
515e33a1deSShawn O. Pearce
525e33a1deSShawn O. Pearce  <parent>
535e33a1deSShawn O. Pearce    <groupId>org.eclipse.jgit</groupId>
545e33a1deSShawn O. Pearce    <artifactId>org.eclipse.jgit-parent</artifactId>
556664bc6fSMatthias Sohn    <version>4.2.0-SNAPSHOT</version>
565e33a1deSShawn O. Pearce  </parent>
575e33a1deSShawn O. Pearce
585e33a1deSShawn O. Pearce  <artifactId>org.eclipse.jgit.http.server</artifactId>
595e33a1deSShawn O. Pearce  <name>JGit - HTTP Server</name>
605e33a1deSShawn O. Pearce
615e33a1deSShawn O. Pearce  <description>
625e33a1deSShawn O. Pearce    Git aware HTTP server implementation.
635e33a1deSShawn O. Pearce  </description>
645e33a1deSShawn O. Pearce
65407fe631SMatthias Sohn  <properties>
66407fe631SMatthias Sohn    <translate-qualifier/>
67407fe631SMatthias Sohn  </properties>
68407fe631SMatthias Sohn
695e33a1deSShawn O. Pearce  <dependencies>
705e33a1deSShawn O. Pearce    <dependency>
715e33a1deSShawn O. Pearce      <groupId>org.eclipse.jgit</groupId>
725e33a1deSShawn O. Pearce      <artifactId>org.eclipse.jgit</artifactId>
735e33a1deSShawn O. Pearce      <version>${project.version}</version>
745e33a1deSShawn O. Pearce    </dependency>
755e33a1deSShawn O. Pearce
765e33a1deSShawn O. Pearce    <dependency>
775e33a1deSShawn O. Pearce      <groupId>javax.servlet</groupId>
78ce8baa37SMatthias Sohn      <artifactId>javax.servlet-api</artifactId>
795e33a1deSShawn O. Pearce      <scope>provided</scope>
805e33a1deSShawn O. Pearce    </dependency>
815e33a1deSShawn O. Pearce  </dependencies>
825e33a1deSShawn O. Pearce
835e33a1deSShawn O. Pearce  <build>
845e33a1deSShawn O. Pearce    <sourceDirectory>src/</sourceDirectory>
855e33a1deSShawn O. Pearce
865e33a1deSShawn O. Pearce    <resources>
875e33a1deSShawn O. Pearce      <resource>
885e33a1deSShawn O. Pearce        <directory>.</directory>
895e33a1deSShawn O. Pearce        <includes>
905e33a1deSShawn O. Pearce          <include>plugin.properties</include>
91e1af16adSMatthias Sohn          <include>about.html</include>
925e33a1deSShawn O. Pearce        </includes>
935e33a1deSShawn O. Pearce      </resource>
94f3d8a8ecSSasa Zivkov      <resource>
95f3d8a8ecSSasa Zivkov        <directory>resources/</directory>
96f3d8a8ecSSasa Zivkov      </resource>
975e33a1deSShawn O. Pearce    </resources>
985e33a1deSShawn O. Pearce
995e33a1deSShawn O. Pearce    <plugins>
1005e33a1deSShawn O. Pearce      <plugin>
101ef08017eSShawn O. Pearce        <groupId>org.apache.maven.plugins</groupId>
102ef08017eSShawn O. Pearce        <artifactId>maven-source-plugin</artifactId>
103ef08017eSShawn O. Pearce        <inherited>true</inherited>
104ef08017eSShawn O. Pearce        <executions>
105ef08017eSShawn O. Pearce          <execution>
106ef08017eSShawn O. Pearce            <id>attach-sources</id>
107ef08017eSShawn O. Pearce            <phase>process-classes</phase>
108ef08017eSShawn O. Pearce            <goals>
109ef08017eSShawn O. Pearce              <goal>jar</goal>
110ef08017eSShawn O. Pearce            </goals>
111ef08017eSShawn O. Pearce            <configuration>
112ef08017eSShawn O. Pearce              <archive>
113ef08017eSShawn O. Pearce                <manifestFile>${source-bundle-manifest}</manifestFile>
114ef08017eSShawn O. Pearce              </archive>
115ef08017eSShawn O. Pearce            </configuration>
116ef08017eSShawn O. Pearce          </execution>
117ef08017eSShawn O. Pearce        </executions>
118ef08017eSShawn O. Pearce      </plugin>
119ef08017eSShawn O. Pearce
120ef08017eSShawn O. Pearce      <plugin>
1215e33a1deSShawn O. Pearce        <artifactId>maven-jar-plugin</artifactId>
1225e33a1deSShawn O. Pearce        <configuration>
1235e33a1deSShawn O. Pearce          <archive>
124407fe631SMatthias Sohn            <manifestFile>${bundle-manifest}</manifestFile>
1255e33a1deSShawn O. Pearce          </archive>
1265e33a1deSShawn O. Pearce        </configuration>
1275e33a1deSShawn O. Pearce      </plugin>
128e178ba20SMatthias Sohn
129e178ba20SMatthias Sohn      <plugin>
130*100179a1SMatthias Sohn          <groupId>com.github.siom79.japicmp</groupId>
131*100179a1SMatthias Sohn          <artifactId>japicmp-maven-plugin</artifactId>
132*100179a1SMatthias Sohn          <version>${japicmp-version}</version>
133*100179a1SMatthias Sohn          <configuration>
134*100179a1SMatthias Sohn              <oldVersion>
135*100179a1SMatthias Sohn                  <dependency>
136*100179a1SMatthias Sohn                      <groupId>${project.groupId}</groupId>
137*100179a1SMatthias Sohn                      <artifactId>${project.artifactId}</artifactId>
138*100179a1SMatthias Sohn                      <version>${jgit-last-release-version}</version>
139*100179a1SMatthias Sohn                  </dependency>
140*100179a1SMatthias Sohn              </oldVersion>
141*100179a1SMatthias Sohn              <newVersion>
142*100179a1SMatthias Sohn                  <file>
143*100179a1SMatthias Sohn                      <path>${project.build.directory}/${project.artifactId}-${project.version}.jar</path>
144*100179a1SMatthias Sohn                  </file>
145*100179a1SMatthias Sohn              </newVersion>
146*100179a1SMatthias Sohn              <parameter>
147*100179a1SMatthias Sohn                  <onlyModified>true</onlyModified>
148*100179a1SMatthias Sohn                  <includes>
149*100179a1SMatthias Sohn                      <include>org.eclipse.jgit.*</include>
150*100179a1SMatthias Sohn                  </includes>
151*100179a1SMatthias Sohn                  <accessModifier>public</accessModifier>
152*100179a1SMatthias Sohn                  <breakBuildOnModifications>false</breakBuildOnModifications>
153*100179a1SMatthias Sohn                  <breakBuildOnBinaryIncompatibleModifications>false</breakBuildOnBinaryIncompatibleModifications>
154*100179a1SMatthias Sohn                  <onlyBinaryIncompatible>false</onlyBinaryIncompatible>
155*100179a1SMatthias Sohn                  <includeSynthetic>false</includeSynthetic>
156*100179a1SMatthias Sohn                  <ignoreMissingClasses>false</ignoreMissingClasses>
157*100179a1SMatthias Sohn                  <skipPomModules>true</skipPomModules>
158*100179a1SMatthias Sohn              </parameter>
159*100179a1SMatthias Sohn              <skip>false</skip>
160*100179a1SMatthias Sohn          </configuration>
161*100179a1SMatthias Sohn          <executions>
162*100179a1SMatthias Sohn            <execution>
163*100179a1SMatthias Sohn             <phase>verify</phase>
164*100179a1SMatthias Sohn             <goals>
165*100179a1SMatthias Sohn               <goal>cmp</goal>
166*100179a1SMatthias Sohn             </goals>
167*100179a1SMatthias Sohn          </execution>
168*100179a1SMatthias Sohn        </executions>
169e178ba20SMatthias Sohn      </plugin>
1705e33a1deSShawn O. Pearce    </plugins>
1715e33a1deSShawn O. Pearce  </build>
172e178ba20SMatthias Sohn
173e178ba20SMatthias Sohn  <reporting>
174e178ba20SMatthias Sohn    <plugins>
175e178ba20SMatthias Sohn      <plugin>
176*100179a1SMatthias Sohn          <groupId>com.github.siom79.japicmp</groupId>
177*100179a1SMatthias Sohn          <artifactId>japicmp-maven-plugin</artifactId>
178*100179a1SMatthias Sohn          <version>${japicmp-version}</version>
179*100179a1SMatthias Sohn          <reportSets>
180*100179a1SMatthias Sohn              <reportSet>
181*100179a1SMatthias Sohn                  <reports>
182*100179a1SMatthias Sohn                      <report>cmp-report</report>
183*100179a1SMatthias Sohn                  </reports>
184*100179a1SMatthias Sohn              </reportSet>
185*100179a1SMatthias Sohn          </reportSets>
186e178ba20SMatthias Sohn          <configuration>
187*100179a1SMatthias Sohn              <oldVersion>
188*100179a1SMatthias Sohn                  <dependency>
189*100179a1SMatthias Sohn                      <groupId>${project.groupId}</groupId>
190*100179a1SMatthias Sohn                      <artifactId>${project.artifactId}</artifactId>
191*100179a1SMatthias Sohn                      <version>${jgit-last-release-version}</version>
192*100179a1SMatthias Sohn                  </dependency>
193*100179a1SMatthias Sohn              </oldVersion>
194*100179a1SMatthias Sohn              <newVersion>
195*100179a1SMatthias Sohn                  <file>
196*100179a1SMatthias Sohn                      <path>${project.build.directory}/${project.artifactId}-${project.version}.jar</path>
197*100179a1SMatthias Sohn                  </file>
198*100179a1SMatthias Sohn              </newVersion>
199*100179a1SMatthias Sohn              <parameter>
200*100179a1SMatthias Sohn                  <onlyModified>true</onlyModified>
201*100179a1SMatthias Sohn                  <includes>
202*100179a1SMatthias Sohn                      <include>org.eclipse.jgit.*</include>
203*100179a1SMatthias Sohn                  </includes>
204*100179a1SMatthias Sohn                  <accessModifier>public</accessModifier>
205*100179a1SMatthias Sohn                  <breakBuildOnModifications>false</breakBuildOnModifications>
206*100179a1SMatthias Sohn                  <breakBuildOnBinaryIncompatibleModifications>false</breakBuildOnBinaryIncompatibleModifications>
207*100179a1SMatthias Sohn                  <onlyBinaryIncompatible>false</onlyBinaryIncompatible>
208*100179a1SMatthias Sohn                  <includeSynthetic>false</includeSynthetic>
209*100179a1SMatthias Sohn                  <ignoreMissingClasses>false</ignoreMissingClasses>
210*100179a1SMatthias Sohn                  <skipPomModules>true</skipPomModules>
211*100179a1SMatthias Sohn              </parameter>
212*100179a1SMatthias Sohn              <skip>false</skip>
213e178ba20SMatthias Sohn          </configuration>
214e178ba20SMatthias Sohn      </plugin>
215e178ba20SMatthias Sohn    </plugins>
216e178ba20SMatthias Sohn  </reporting>
2175e33a1deSShawn O. Pearce</project>
218