177d2f3caSMatthias Sohn<?xml version="1.0" encoding="UTF-8"?> 277d2f3caSMatthias Sohn<!-- 35c5f7c6bSMatthias Sohn Copyright (C) 2013, Matthias Sohn <matthias.sohn@sap.com> and others 477d2f3caSMatthias Sohn 55c5f7c6bSMatthias Sohn This program and the accompanying materials are made available under the 65c5f7c6bSMatthias Sohn terms of the Eclipse Distribution License v. 1.0 which is available at 75c5f7c6bSMatthias Sohn http://www.eclipse.org/org/documents/edl-v10.php. 877d2f3caSMatthias Sohn 95c5f7c6bSMatthias Sohn SPDX-License-Identifier: BSD-3-Clause 1077d2f3caSMatthias Sohn--> 1177d2f3caSMatthias Sohn<project xmlns="http://maven.apache.org/POM/4.0.0" 1277d2f3caSMatthias Sohn xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 1377d2f3caSMatthias Sohn xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> 1477d2f3caSMatthias Sohn <modelVersion>4.0.0</modelVersion> 1577d2f3caSMatthias Sohn 1677d2f3caSMatthias Sohn <parent> 1777d2f3caSMatthias Sohn <groupId>org.eclipse.jgit</groupId> 1877d2f3caSMatthias Sohn <artifactId>jgit.tycho.parent</artifactId> 19*1cbfea9eSMatthias Sohn <version>5.13.0-SNAPSHOT</version> 2077d2f3caSMatthias Sohn </parent> 2177d2f3caSMatthias Sohn 2277d2f3caSMatthias Sohn <artifactId>org.eclipse.jgit.target</artifactId> 238399a9bcSMatthias Sohn <packaging>pom</packaging> 2477d2f3caSMatthias Sohn <name>JGit Target Platform</name> 258399a9bcSMatthias Sohn 268399a9bcSMatthias Sohn <build> 278399a9bcSMatthias Sohn <plugins> 288399a9bcSMatthias Sohn <plugin> 298399a9bcSMatthias Sohn <groupId>org.codehaus.mojo</groupId> 308399a9bcSMatthias Sohn <artifactId>build-helper-maven-plugin</artifactId> 318399a9bcSMatthias Sohn <executions> 328399a9bcSMatthias Sohn <execution> 338399a9bcSMatthias Sohn <id>attach-artifacts</id> 348399a9bcSMatthias Sohn <phase>package</phase> 358399a9bcSMatthias Sohn <goals> 368399a9bcSMatthias Sohn <goal>attach-artifact</goal> 378399a9bcSMatthias Sohn </goals> 388399a9bcSMatthias Sohn <configuration> 398399a9bcSMatthias Sohn <artifacts> 408399a9bcSMatthias Sohn <artifact> 418399a9bcSMatthias Sohn <file>${target-platform}.target</file> 428399a9bcSMatthias Sohn <type>target</type> 438399a9bcSMatthias Sohn <classifier>${target-platform}</classifier> 448399a9bcSMatthias Sohn </artifact> 458399a9bcSMatthias Sohn </artifacts> 468399a9bcSMatthias Sohn </configuration> 478399a9bcSMatthias Sohn </execution> 488399a9bcSMatthias Sohn </executions> 498399a9bcSMatthias Sohn </plugin> 508399a9bcSMatthias Sohn </plugins> 518399a9bcSMatthias Sohn </build> 5277d2f3caSMatthias Sohn</project>