pom.xml 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  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.5.0-SNAPSHOT</version>
  10. <relativePath>../../releng/org.yakindu.sct.releng/pom.xml</relativePath>
  11. </parent>
  12. <artifactId>org.yakindu.sct.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. </plugins>
  46. </build>
  47. </project>