pom.xml 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  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. <parent>
  7. <groupId>org.yakindu.sct</groupId>
  8. <artifactId>org.yakindu.sct.releng</artifactId>
  9. <version>2.1.0-SNAPSHOT</version>
  10. <relativePath>../org.yakindu.sct.releng/pom.xml</relativePath>
  11. </parent>
  12. <artifactId>org.yakindu.sct.ui.examples</artifactId>
  13. <groupId>org.yakindu.sct.plugins</groupId>
  14. <packaging>eclipse-plugin</packaging>
  15. <build>
  16. <plugins>
  17. <plugin>
  18. <groupId>org.apache.maven.plugins</groupId>
  19. <artifactId>maven-dependency-plugin</artifactId>
  20. <version>2.4</version>
  21. <executions>
  22. <execution>
  23. <id>copy</id>
  24. <phase>prepare-package</phase>
  25. <goals>
  26. <goal>copy</goal>
  27. </goals>
  28. <configuration>
  29. <artifactItems>
  30. <artifactItem>
  31. <groupId>org.yakindu.sct.examples</groupId>
  32. <artifactId>org.yakindu.sct.examples.trafficlight</artifactId>
  33. <version>${project.version}</version>
  34. <type>zip</type>
  35. <classifier>content</classifier>
  36. <destFileName>org.yakindu.sct.examples.trafficlight.zip</destFileName>
  37. </artifactItem>
  38. </artifactItems>
  39. <overWriteIfNewer>true</overWriteIfNewer>
  40. <outputDirectory>${basedir}/contents</outputDirectory>
  41. </configuration>
  42. </execution>
  43. </executions>
  44. </plugin>
  45. <plugin>
  46. <groupId>org.eclipse.tycho</groupId>
  47. <artifactId>tycho-source-plugin</artifactId>
  48. <version>${tycho-version}</version>
  49. <executions>
  50. <execution>
  51. <id>plugin-source</id>
  52. <goals>
  53. <goal>plugin-source</goal>
  54. </goals>
  55. </execution>
  56. </executions>
  57. </plugin>
  58. </plugins>
  59. </build>
  60. </project>