You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

pom.xml 1.6KB

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