1<?xml version="1.0" encoding="UTF-8"?> 2<!-- 3 Copyright (C) 2013, Matthias Sohn <matthias.sohn@sap.com> and others 4 5 This program and the accompanying materials are made available under the 6 terms of the Eclipse Distribution License v. 1.0 which is available at 7 http://www.eclipse.org/org/documents/edl-v10.php. 8 9 SPDX-License-Identifier: BSD-3-Clause 10--> 11<project xmlns="http://maven.apache.org/POM/4.0.0" 12 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 13 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> 14 <modelVersion>4.0.0</modelVersion> 15 16 <parent> 17 <groupId>org.eclipse.jgit</groupId> 18 <artifactId>jgit.tycho.parent</artifactId> 19 <version>5.13.0-SNAPSHOT</version> 20 </parent> 21 22 <artifactId>org.eclipse.jgit.target</artifactId> 23 <packaging>pom</packaging> 24 <name>JGit Target Platform</name> 25 26 <build> 27 <plugins> 28 <plugin> 29 <groupId>org.codehaus.mojo</groupId> 30 <artifactId>build-helper-maven-plugin</artifactId> 31 <executions> 32 <execution> 33 <id>attach-artifacts</id> 34 <phase>package</phase> 35 <goals> 36 <goal>attach-artifact</goal> 37 </goals> 38 <configuration> 39 <artifacts> 40 <artifact> 41 <file>${target-platform}.target</file> 42 <type>target</type> 43 <classifier>${target-platform}</classifier> 44 </artifact> 45 </artifacts> 46 </configuration> 47 </execution> 48 </executions> 49 </plugin> 50 </plugins> 51 </build> 52</project>