pom.xml 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
  4. xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  5. <modelVersion>4.0.0</modelVersion>
  6. <groupId>org.yakindu.base</groupId>
  7. <artifactId>org.yakindu.base.target</artifactId>
  8. <version>2.1.1-SNAPSHOT</version>
  9. <packaging>pom</packaging>
  10. <properties>
  11. <tycho-version>0.18.0</tycho-version>
  12. <build-helper-version>1.3</build-helper-version>
  13. </properties>
  14. <build>
  15. <plugins>
  16. <plugin>
  17. <!-- enable tycho build extension -->
  18. <groupId>org.eclipse.tycho</groupId>
  19. <artifactId>tycho-maven-plugin</artifactId>
  20. <version>${tycho-version}</version>
  21. <extensions>true</extensions>
  22. </plugin>
  23. <plugin>
  24. <groupId>org.codehaus.mojo</groupId>
  25. <artifactId>build-helper-maven-plugin</artifactId>
  26. <version>${build-helper-version}</version>
  27. <executions>
  28. <!-- make target file available for incremental builds -->
  29. <execution>
  30. <id>attach-artifacts</id>
  31. <phase>package</phase>
  32. <goals>
  33. <goal>attach-artifact</goal>
  34. </goals>
  35. <configuration>
  36. <artifacts>
  37. <artifact>
  38. <!-- note: the file name must be ${classifier}.target -->
  39. <file>Juno.target</file>
  40. <type>target</type>
  41. <classifier>Juno</classifier>
  42. </artifact>
  43. <artifact>
  44. <!-- note: the file name must be ${classifier}.target -->
  45. <file>Kepler.target</file>
  46. <type>target</type>
  47. <classifier>Kepler</classifier>
  48. </artifact>
  49. </artifacts>
  50. </configuration>
  51. </execution>
  52. </executions>
  53. </plugin>
  54. </plugins>
  55. </build>
  56. </project>