pom.xml 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  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.statechart.target</artifactId>
  13. <packaging>pom</packaging>
  14. <properties>
  15. <build-helper-version>1.3</build-helper-version>
  16. </properties>
  17. <profiles>
  18. <profile>
  19. <id>Indigo.target</id>
  20. <activation>
  21. <activeByDefault>true</activeByDefault>
  22. </activation>
  23. <build>
  24. <plugins>
  25. <plugin>
  26. <groupId>org.codehaus.mojo</groupId>
  27. <artifactId>build-helper-maven-plugin</artifactId>
  28. <version>${build-helper-version}</version>
  29. <executions>
  30. <!-- make target file available for incremental builds -->
  31. <execution>
  32. <id>attach-artifacts</id>
  33. <phase>package</phase>
  34. <goals>
  35. <goal>attach-artifact</goal>
  36. </goals>
  37. <configuration>
  38. <artifacts>
  39. <artifact>
  40. <!-- note: the file name must be ${classifier}.target -->
  41. <file>INDIGO.target</file>
  42. <type>target</type>
  43. <classifier>INDIGO</classifier>
  44. </artifact>
  45. </artifacts>
  46. </configuration>
  47. </execution>
  48. </executions>
  49. </plugin>
  50. </plugins>
  51. </build>
  52. </profile>
  53. </profiles>
  54. </project>