|  | <?xml version="1.0" encoding="UTF-8"?> | 
|  | <!-- | 
|  | Copyright (C) 2009, 2015, Matthias Sohn <matthias.sohn@sap.com> | 
|  | and other copyright owners as documented in the project's IP log. | 
|  |  | 
|  | This program and the accompanying materials are made available | 
|  | under the terms of the Eclipse Distribution License v1.0 which | 
|  | accompanies this distribution, is reproduced below, and is | 
|  | available at http://www.eclipse.org/org/documents/edl-v10.php | 
|  |  | 
|  | All rights reserved. | 
|  |  | 
|  | Redistribution and use in source and binary forms, with or | 
|  | without modification, are permitted provided that the following | 
|  | conditions are met: | 
|  |  | 
|  | - Redistributions of source code must retain the above copyright | 
|  | notice, this list of conditions and the following disclaimer. | 
|  |  | 
|  | - Redistributions in binary form must reproduce the above | 
|  | copyright notice, this list of conditions and the following | 
|  | disclaimer in the documentation and/or other materials provided | 
|  | with the distribution. | 
|  |  | 
|  | - Neither the name of the Eclipse Foundation, Inc. nor the | 
|  | names of its contributors may be used to endorse or promote | 
|  | products derived from this software without specific prior | 
|  | written permission. | 
|  |  | 
|  | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND | 
|  | CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, | 
|  | INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES | 
|  | OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE | 
|  | ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR | 
|  | CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, | 
|  | SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT | 
|  | NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; | 
|  | LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER | 
|  | CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, | 
|  | STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) | 
|  | ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF | 
|  | ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 
|  | --> | 
|  |  | 
|  | <project xmlns="http://maven.apache.org/POM/4.0.0" | 
|  | xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | 
|  | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> | 
|  | <modelVersion>4.0.0</modelVersion> | 
|  |  | 
|  | <prerequisites> | 
|  | <maven>3.0</maven> | 
|  | </prerequisites> | 
|  |  | 
|  | <groupId>org.eclipse.jgit</groupId> | 
|  | <artifactId>jgit.tycho.parent</artifactId> | 
|  | <version>5.3.0-SNAPSHOT</version> | 
|  | <packaging>pom</packaging> | 
|  |  | 
|  | <name>JGit Tycho Parent</name> | 
|  |  | 
|  | <properties> | 
|  | <tycho-version>1.3.0</tycho-version> | 
|  | <tycho-extras-version>${tycho-version}</tycho-extras-version> | 
|  | <target-platform>jgit-4.6</target-platform> | 
|  | </properties> | 
|  |  | 
|  | <pluginRepositories> | 
|  | <pluginRepository> | 
|  | <id>repo.eclipse.org.cbi-releases</id> | 
|  | <url>https://repo.eclipse.org/content/repositories/cbi-releases/</url> | 
|  | </pluginRepository> | 
|  | <pluginRepository> | 
|  | <id>repo.eclipse.org.cbi-snapshots</id> | 
|  | <url>https://repo.eclipse.org/content/repositories/cbi-snapshots/</url> | 
|  | </pluginRepository> | 
|  | </pluginRepositories> | 
|  |  | 
|  | <modules> | 
|  | <module>org.eclipse.jgit.target</module> | 
|  | <module>org.eclipse.jgit.feature</module> | 
|  | <module>org.eclipse.jgit.http.apache.feature</module> | 
|  | <module>org.eclipse.jgit.ssh.apache.feature</module> | 
|  | <module>org.eclipse.jgit.lfs.feature</module> | 
|  | <module>org.eclipse.jgit.pgm.feature</module> | 
|  | <module>org.eclipse.jgit.source.feature</module> | 
|  | <module>org.eclipse.jgit.pgm.source.feature</module> | 
|  | <module>org.eclipse.jgit.ssh.apache.source.feature</module> | 
|  | <module>org.eclipse.jgit.junit.feature</module> | 
|  | <module>org.eclipse.jgit.repository</module> | 
|  | </modules> | 
|  |  | 
|  | <distributionManagement> | 
|  | <repository> | 
|  | <id>repo.eclipse.org</id> | 
|  | <name>JGit Maven Repository - Releases</name> | 
|  | <url>https://repo.eclipse.org/content/repositories/jgit-releases/</url> | 
|  | </repository> | 
|  | <snapshotRepository> | 
|  | <id>repo.eclipse.org</id> | 
|  | <name>JGit Maven Repository - Snapshots</name> | 
|  | <url>https://repo.eclipse.org/content/repositories/jgit-snapshots/</url> | 
|  | <uniqueVersion>true</uniqueVersion> | 
|  | </snapshotRepository> | 
|  | </distributionManagement> | 
|  |  | 
|  | <dependencies> | 
|  | <!-- sources artifacts so that we can place them in the features --> | 
|  | <dependency> | 
|  | <groupId>org.eclipse.jgit</groupId> | 
|  | <artifactId>org.eclipse.jgit</artifactId> | 
|  | <version>${project.version}</version> | 
|  | <classifier>sources</classifier> | 
|  | </dependency> | 
|  | <dependency> | 
|  | <groupId>org.eclipse.jgit</groupId> | 
|  | <artifactId>org.eclipse.jgit.pgm</artifactId> | 
|  | <version>${project.version}</version> | 
|  | <classifier>sources</classifier> | 
|  | </dependency> | 
|  | <dependency> | 
|  | <groupId>org.eclipse.jgit</groupId> | 
|  | <artifactId>org.eclipse.jgit.ssh.apache</artifactId> | 
|  | <version>${project.version}</version> | 
|  | <classifier>sources</classifier> | 
|  | </dependency> | 
|  | </dependencies> | 
|  |  | 
|  | <build> | 
|  | <plugins> | 
|  | <plugin> | 
|  | <groupId>org.apache.maven.plugins</groupId> | 
|  | <artifactId>maven-enforcer-plugin</artifactId> | 
|  | <version>3.0.0-M1</version> | 
|  | <executions> | 
|  | <execution> | 
|  | <id>enforce-maven</id> | 
|  | <goals> | 
|  | <goal>enforce</goal> | 
|  | </goals> | 
|  | <configuration> | 
|  | <rules> | 
|  | <requireMavenVersion> | 
|  | <version>3.5.2</version> | 
|  | </requireMavenVersion> | 
|  | </rules> | 
|  | </configuration> | 
|  | </execution> | 
|  | </executions> | 
|  | </plugin> | 
|  | <plugin> | 
|  | <groupId>org.eclipse.tycho</groupId> | 
|  | <artifactId>tycho-maven-plugin</artifactId> | 
|  | <version>${tycho-version}</version> | 
|  | <extensions>true</extensions> | 
|  | </plugin> | 
|  | <plugin> | 
|  | <groupId>org.eclipse.tycho</groupId> | 
|  | <artifactId>target-platform-configuration</artifactId> | 
|  | <version>${tycho-version}</version> | 
|  | <configuration> | 
|  | <resolver>p2</resolver> | 
|  | </configuration> | 
|  | </plugin> | 
|  | </plugins> | 
|  | <pluginManagement> | 
|  | <plugins> | 
|  | <plugin> | 
|  | <groupId>org.eclipse.tycho</groupId> | 
|  | <artifactId>tycho-compiler-plugin</artifactId> | 
|  | <version>${tycho-version}</version> | 
|  | <configuration> | 
|  | <encoding>UTF-8</encoding> | 
|  | <source>1.8</source> | 
|  | <target>1.8</target> | 
|  | </configuration> | 
|  | </plugin> | 
|  | <plugin> | 
|  | <groupId>org.apache.maven.plugins</groupId> | 
|  | <artifactId>maven-resources-plugin</artifactId> | 
|  | <version>3.1.0</version> | 
|  | <configuration> | 
|  | <encoding>ISO-8859-1</encoding> | 
|  | </configuration> | 
|  | </plugin> | 
|  | <plugin> | 
|  | <groupId>org.eclipse.tycho</groupId> | 
|  | <artifactId>target-platform-configuration</artifactId> | 
|  | <version>${tycho-version}</version> | 
|  | <configuration> | 
|  | <resolver>p2</resolver> | 
|  | <pomDependencies>consider</pomDependencies> | 
|  | <target> | 
|  | <artifact> | 
|  | <groupId>org.eclipse.jgit</groupId> | 
|  | <artifactId>org.eclipse.jgit.target</artifactId> | 
|  | <version>${project.version}</version> | 
|  | <classifier>${target-platform}</classifier> | 
|  | </artifact> | 
|  | </target> | 
|  | <environments> | 
|  | <environment> | 
|  | <os>linux</os> | 
|  | <ws>gtk</ws> | 
|  | <arch>x86</arch> | 
|  | </environment> | 
|  | <environment> | 
|  | <os>linux</os> | 
|  | <ws>gtk</ws> | 
|  | <arch>x86_64</arch> | 
|  | </environment> | 
|  | <environment> | 
|  | <os>win32</os> | 
|  | <ws>win32</ws> | 
|  | <arch>x86</arch> | 
|  | </environment> | 
|  | <environment> | 
|  | <os>win32</os> | 
|  | <ws>win32</ws> | 
|  | <arch>x86_64</arch> | 
|  | </environment> | 
|  | <environment> | 
|  | <os>macosx</os> | 
|  | <ws>cocoa</ws> | 
|  | <arch>x86_64</arch> | 
|  | </environment> | 
|  | </environments> | 
|  | </configuration> | 
|  | </plugin> | 
|  | <plugin> | 
|  | <groupId>org.eclipse.tycho</groupId> | 
|  | <artifactId>tycho-p2-plugin</artifactId> | 
|  | <version>${tycho-version}</version> | 
|  | </plugin> | 
|  | <plugin> | 
|  | <groupId>org.eclipse.tycho.extras</groupId> | 
|  | <artifactId>tycho-pack200a-plugin</artifactId> | 
|  | <version>${tycho-extras-version}</version> | 
|  | </plugin> | 
|  | <plugin> | 
|  | <groupId>org.eclipse.tycho.extras</groupId> | 
|  | <artifactId>tycho-pack200b-plugin</artifactId> | 
|  | <version>${tycho-extras-version}</version> | 
|  | </plugin> | 
|  | <plugin> | 
|  | <groupId>org.eclipse.cbi.maven.plugins</groupId> | 
|  | <artifactId>eclipse-jarsigner-plugin</artifactId> | 
|  | <version>1.1.5</version> | 
|  | </plugin> | 
|  | <plugin> | 
|  | <groupId>org.codehaus.mojo</groupId> | 
|  | <artifactId>build-helper-maven-plugin</artifactId> | 
|  | <version>3.0.0</version> | 
|  | </plugin> | 
|  | </plugins> | 
|  | </pluginManagement> | 
|  | </build> | 
|  |  | 
|  | <profiles> | 
|  | <profile> | 
|  | <id>eclipse-sign</id> | 
|  | <build> | 
|  | <plugins> | 
|  | <plugin> | 
|  | <groupId>org.eclipse.tycho</groupId> | 
|  | <artifactId>target-platform-configuration</artifactId> | 
|  | <configuration> | 
|  | <includePackedArtifacts>true</includePackedArtifacts> | 
|  | </configuration> | 
|  | </plugin> | 
|  | <plugin> | 
|  | <groupId>org.eclipse.tycho.extras</groupId> | 
|  | <artifactId>tycho-pack200a-plugin</artifactId> | 
|  | <executions> | 
|  | <execution> | 
|  | <id>pack200-normalize</id> | 
|  | <goals> | 
|  | <goal>normalize</goal> | 
|  | </goals> | 
|  | <phase>verify</phase> | 
|  | </execution> | 
|  | </executions> | 
|  | </plugin> | 
|  | <plugin> | 
|  | <groupId>org.eclipse.cbi.maven.plugins</groupId> | 
|  | <artifactId>eclipse-jarsigner-plugin</artifactId> | 
|  | <executions> | 
|  | <execution> | 
|  | <id>sign</id> | 
|  | <goals> | 
|  | <goal>sign</goal> | 
|  | </goals> | 
|  | <phase>verify</phase> | 
|  | </execution> | 
|  | </executions> | 
|  | </plugin> | 
|  | <plugin> | 
|  | <groupId>org.eclipse.tycho.extras</groupId> | 
|  | <artifactId>tycho-pack200b-plugin</artifactId> | 
|  | <executions> | 
|  | <execution> | 
|  | <id>pack200-pack</id> | 
|  | <goals> | 
|  | <goal>pack</goal> | 
|  | </goals> | 
|  | <phase>verify</phase> | 
|  | </execution> | 
|  | </executions> | 
|  | </plugin> | 
|  | <plugin> | 
|  | <groupId>org.eclipse.tycho</groupId> | 
|  | <artifactId>tycho-p2-plugin</artifactId> | 
|  | <executions> | 
|  | <execution> | 
|  | <id>p2-metadata</id> | 
|  | <goals> | 
|  | <goal>p2-metadata</goal> | 
|  | </goals> | 
|  | <phase>verify</phase> | 
|  | </execution> | 
|  | </executions> | 
|  | <configuration> | 
|  | <defaultP2Metadata>false</defaultP2Metadata> | 
|  | </configuration> | 
|  | </plugin> | 
|  | </plugins> | 
|  | </build> | 
|  | </profile> | 
|  | <profile> | 
|  | <id>eclipse-pack</id> | 
|  | <build> | 
|  | <plugins> | 
|  | <plugin> | 
|  | <groupId>org.eclipse.tycho</groupId> | 
|  | <artifactId>target-platform-configuration</artifactId> | 
|  | <configuration> | 
|  | <includePackedArtifacts>true</includePackedArtifacts> | 
|  | </configuration> | 
|  | </plugin> | 
|  | <plugin> | 
|  | <groupId>org.eclipse.tycho.extras</groupId> | 
|  | <artifactId>tycho-pack200a-plugin</artifactId> | 
|  | <executions> | 
|  | <execution> | 
|  | <id>pack200-normalize</id> | 
|  | <goals> | 
|  | <goal>normalize</goal> | 
|  | </goals> | 
|  | </execution> | 
|  | </executions> | 
|  | </plugin> | 
|  | <plugin> | 
|  | <groupId>org.eclipse.tycho.extras</groupId> | 
|  | <artifactId>tycho-pack200b-plugin</artifactId> | 
|  | <executions> | 
|  | <execution> | 
|  | <id>pack200-pack</id> | 
|  | <goals> | 
|  | <goal>pack</goal> | 
|  | </goals> | 
|  | </execution> | 
|  | </executions> | 
|  | </plugin> | 
|  | <plugin> | 
|  | <groupId>org.eclipse.tycho</groupId> | 
|  | <artifactId>tycho-p2-plugin</artifactId> | 
|  | <executions> | 
|  | <execution> | 
|  | <id>p2-metadata</id> | 
|  | <goals> | 
|  | <goal>p2-metadata</goal> | 
|  | </goals> | 
|  | <phase>package</phase> | 
|  | </execution> | 
|  | </executions> | 
|  | <configuration> | 
|  | <defaultP2Metadata>false</defaultP2Metadata> | 
|  | </configuration> | 
|  | </plugin> | 
|  | </plugins> | 
|  | </build> | 
|  | </profile> | 
|  | </profiles> | 
|  | </project> |