xref: /JGit/org.eclipse.jgit.packaging/pom.xml (revision f245579820f8113ae767864772731e8ad97b5a1f)
1*f2455798SMatthias Sohn<?xml version="1.0" encoding="UTF-8"?>
2*f2455798SMatthias Sohn<!--
3*f2455798SMatthias Sohn   Copyright (C) 2009-2010, Matthias Sohn <matthias.sohn@sap.com>
4*f2455798SMatthias Sohn   and other copyright owners as documented in the project's IP log.
5*f2455798SMatthias Sohn
6*f2455798SMatthias Sohn   This program and the accompanying materials are made available
7*f2455798SMatthias Sohn   under the terms of the Eclipse Distribution License v1.0 which
8*f2455798SMatthias Sohn   accompanies this distribution, is reproduced below, and is
9*f2455798SMatthias Sohn   available at http://www.eclipse.org/org/documents/edl-v10.php
10*f2455798SMatthias Sohn
11*f2455798SMatthias Sohn   All rights reserved.
12*f2455798SMatthias Sohn
13*f2455798SMatthias Sohn   Redistribution and use in source and binary forms, with or
14*f2455798SMatthias Sohn   without modification, are permitted provided that the following
15*f2455798SMatthias Sohn   conditions are met:
16*f2455798SMatthias Sohn
17*f2455798SMatthias Sohn   - Redistributions of source code must retain the above copyright
18*f2455798SMatthias Sohn     notice, this list of conditions and the following disclaimer.
19*f2455798SMatthias Sohn
20*f2455798SMatthias Sohn   - Redistributions in binary form must reproduce the above
21*f2455798SMatthias Sohn     copyright notice, this list of conditions and the following
22*f2455798SMatthias Sohn     disclaimer in the documentation and/or other materials provided
23*f2455798SMatthias Sohn     with the distribution.
24*f2455798SMatthias Sohn
25*f2455798SMatthias Sohn   - Neither the name of the Eclipse Foundation, Inc. nor the
26*f2455798SMatthias Sohn     names of its contributors may be used to endorse or promote
27*f2455798SMatthias Sohn     products derived from this software without specific prior
28*f2455798SMatthias Sohn     written permission.
29*f2455798SMatthias Sohn
30*f2455798SMatthias Sohn   THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND
31*f2455798SMatthias Sohn   CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES,
32*f2455798SMatthias Sohn   INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
33*f2455798SMatthias Sohn   OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
34*f2455798SMatthias Sohn   ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
35*f2455798SMatthias Sohn   CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
36*f2455798SMatthias Sohn   SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
37*f2455798SMatthias Sohn   NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
38*f2455798SMatthias Sohn   LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
39*f2455798SMatthias Sohn   CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
40*f2455798SMatthias Sohn   STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
41*f2455798SMatthias Sohn   ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
42*f2455798SMatthias Sohn   ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
43*f2455798SMatthias Sohn-->
44*f2455798SMatthias Sohn
45*f2455798SMatthias Sohn<project xmlns="http://maven.apache.org/POM/4.0.0"
46*f2455798SMatthias Sohn    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
47*f2455798SMatthias Sohn    xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
48*f2455798SMatthias Sohn  <modelVersion>4.0.0</modelVersion>
49*f2455798SMatthias Sohn
50*f2455798SMatthias Sohn  <prerequisites>
51*f2455798SMatthias Sohn    <maven>3.0</maven>
52*f2455798SMatthias Sohn  </prerequisites>
53*f2455798SMatthias Sohn
54*f2455798SMatthias Sohn  <groupId>org.eclipse.jgit</groupId>
55*f2455798SMatthias Sohn  <artifactId>jgit.tycho.parent</artifactId>
56*f2455798SMatthias Sohn  <version>0.6.0-SNAPSHOT</version>
57*f2455798SMatthias Sohn  <packaging>pom</packaging>
58*f2455798SMatthias Sohn
59*f2455798SMatthias Sohn  <name>JGit Tycho Parent (Incubation)</name>
60*f2455798SMatthias Sohn
61*f2455798SMatthias Sohn  <properties>
62*f2455798SMatthias Sohn    <tycho-version>0.6.0</tycho-version>
63*f2455798SMatthias Sohn  </properties>
64*f2455798SMatthias Sohn
65*f2455798SMatthias Sohn  <modules>
66*f2455798SMatthias Sohn    <module>org.eclipse.jgit.feature</module>
67*f2455798SMatthias Sohn    <module>org.eclipse.jgit.updatesite</module>
68*f2455798SMatthias Sohn  </modules>
69*f2455798SMatthias Sohn
70*f2455798SMatthias Sohn  <repositories>
71*f2455798SMatthias Sohn    <repository>
72*f2455798SMatthias Sohn      <id>galileo</id>
73*f2455798SMatthias Sohn      <layout>p2</layout>
74*f2455798SMatthias Sohn      <url>http://download.eclipse.org/releases/galileo</url>
75*f2455798SMatthias Sohn    </repository>
76*f2455798SMatthias Sohn  </repositories>
77*f2455798SMatthias Sohn
78*f2455798SMatthias Sohn  <build>
79*f2455798SMatthias Sohn    <plugins>
80*f2455798SMatthias Sohn      <plugin>
81*f2455798SMatthias Sohn        <groupId>org.sonatype.tycho</groupId>
82*f2455798SMatthias Sohn        <artifactId>tycho-maven-plugin</artifactId>
83*f2455798SMatthias Sohn        <version>${tycho-version}</version>
84*f2455798SMatthias Sohn        <extensions>true</extensions>
85*f2455798SMatthias Sohn      </plugin>
86*f2455798SMatthias Sohn      <plugin>
87*f2455798SMatthias Sohn        <groupId>org.sonatype.tycho</groupId>
88*f2455798SMatthias Sohn        <artifactId>target-platform-configuration</artifactId>
89*f2455798SMatthias Sohn        <version>${tycho-version}</version>
90*f2455798SMatthias Sohn        <configuration>
91*f2455798SMatthias Sohn          <resolver>p2</resolver>
92*f2455798SMatthias Sohn        </configuration>
93*f2455798SMatthias Sohn      </plugin>
94*f2455798SMatthias Sohn    </plugins>
95*f2455798SMatthias Sohn    <pluginManagement>
96*f2455798SMatthias Sohn      <plugins>
97*f2455798SMatthias Sohn        <plugin>
98*f2455798SMatthias Sohn          <groupId>org.sonatype.tycho</groupId>
99*f2455798SMatthias Sohn          <artifactId>maven-osgi-compiler-plugin</artifactId>
100*f2455798SMatthias Sohn          <version>${tycho-version}</version>
101*f2455798SMatthias Sohn          <configuration>
102*f2455798SMatthias Sohn            <encoding>UTF-8</encoding>
103*f2455798SMatthias Sohn          </configuration>
104*f2455798SMatthias Sohn        </plugin>
105*f2455798SMatthias Sohn        <plugin>
106*f2455798SMatthias Sohn          <groupId>org.apache.maven.plugins</groupId>
107*f2455798SMatthias Sohn          <artifactId>maven-resources-plugin</artifactId>
108*f2455798SMatthias Sohn          <version>2.4.1</version>
109*f2455798SMatthias Sohn          <configuration>
110*f2455798SMatthias Sohn            <encoding>ISO-8859-1</encoding>
111*f2455798SMatthias Sohn          </configuration>
112*f2455798SMatthias Sohn        </plugin>
113*f2455798SMatthias Sohn        <plugin>
114*f2455798SMatthias Sohn          <groupId>org.sonatype.tycho</groupId>
115*f2455798SMatthias Sohn          <artifactId>target-platform-configuration</artifactId>
116*f2455798SMatthias Sohn          <version>${tycho-version}</version>
117*f2455798SMatthias Sohn          <configuration>
118*f2455798SMatthias Sohn            <resolver>p2</resolver>
119*f2455798SMatthias Sohn	    <pomDependencies>consider</pomDependencies>
120*f2455798SMatthias Sohn          </configuration>
121*f2455798SMatthias Sohn        </plugin>
122*f2455798SMatthias Sohn      </plugins>
123*f2455798SMatthias Sohn    </pluginManagement>
124*f2455798SMatthias Sohn  </build>
125*f2455798SMatthias Sohn</project>
126*f2455798SMatthias Sohn
127