pom.xml 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  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.doc.user</artifactId>
  13. <groupId>org.yakindu.sct.plugins</groupId>
  14. <packaging>eclipse-plugin</packaging>
  15. <build>
  16. <plugins>
  17. <plugin>
  18. <artifactId>maven-antrun-plugin</artifactId>
  19. <version>1.7</version>
  20. <executions>
  21. <execution>
  22. <id>generate-help</id>
  23. <phase> generate-sources </phase>
  24. <configuration>
  25. <target>
  26. <ant dir="${project.basedir}" antfile="build.xml">
  27. </ant>
  28. </target>
  29. </configuration>
  30. <goals>
  31. <goal>run</goal>
  32. </goals>
  33. </execution>
  34. <execution>
  35. <id>clean-help</id>
  36. <phase> clean </phase>
  37. <configuration>
  38. <target>
  39. <ant dir="${project.basedir}" antfile="build.xml" target="clean">
  40. </ant>
  41. </target>
  42. </configuration>
  43. <goals>
  44. <goal>run</goal>
  45. </goals>
  46. </execution>
  47. </executions>
  48. </plugin>
  49. </plugins>
  50. </build>
  51. </project>