pom.xml 1.3 KB

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