pom.xml 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  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. <groupId>org.yakindu.sct.examples</groupId>
  13. <artifactId>light_switch</artifactId>
  14. <packaging>pom</packaging>
  15. <properties>
  16. <build-helper-version>1.3</build-helper-version>
  17. </properties>
  18. <build>
  19. <plugins>
  20. <plugin>
  21. <artifactId>maven-assembly-plugin</artifactId>
  22. <version>2.3</version>
  23. <configuration>
  24. <descriptors>
  25. <descriptor>assembly.xml</descriptor>
  26. </descriptors>
  27. </configuration>
  28. <executions>
  29. <execution>
  30. <id>make-assembly</id> <!-- this is used for inheritance merges -->
  31. <phase>package</phase> <!-- bind to the packaging phase -->
  32. <goals>
  33. <goal>single</goal>
  34. </goals>
  35. </execution>
  36. </executions>
  37. </plugin>
  38. </plugins>
  39. </build>
  40. </project>