pom.xml 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
  3. xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  4. <modelVersion>4.0.0</modelVersion>
  5. <parent>
  6. <groupId>org.yakindu.sct</groupId>
  7. <artifactId>org.yakindu.sct.releng</artifactId>
  8. <version>3.4.0-SNAPSHOT</version>
  9. <relativePath>../../releng/org.yakindu.sct.releng/pom.xml</relativePath>
  10. </parent>
  11. <artifactId>org.yakindu.sct.doc.user</artifactId>
  12. <groupId>org.yakindu.sct.plugins</groupId>
  13. <packaging>eclipse-plugin</packaging>
  14. <build>
  15. <plugins>
  16. <plugin>
  17. <artifactId>maven-antrun-plugin</artifactId>
  18. <version>1.8</version>
  19. <executions>
  20. <execution>
  21. <id>generate-help</id>
  22. <phase> generate-sources </phase>
  23. <configuration>
  24. <target>
  25. <property environment="env">
  26. <env key="LANG" value="en_US"/>
  27. </property>
  28. </target>
  29. <tasks>
  30. <ant dir="${project.basedir}" antfile="build.xml">
  31. </ant>
  32. </tasks>
  33. </configuration>
  34. <goals>
  35. <goal>run</goal>
  36. </goals>
  37. </execution>
  38. <execution>
  39. <id>clean-help</id>
  40. <phase> clean </phase>
  41. <configuration>
  42. <target>
  43. <ant dir="${project.basedir}" antfile="build.xml" target="clean">
  44. </ant>
  45. </target>
  46. </configuration>
  47. <goals>
  48. <goal>run</goal>
  49. </goals>
  50. </execution>
  51. </executions>
  52. <dependencies>
  53. <dependency>
  54. <groupId>org.yakindu.docs</groupId>
  55. <artifactId>yakindu-docs-maven-plugin</artifactId>
  56. <version>0.0.1-SNAPSHOT</version>
  57. </dependency>
  58. </dependencies>
  59. </plugin>
  60. </plugins>
  61. </build>
  62. <pluginRepositories>
  63. <pluginRepository>
  64. <id>releases</id>
  65. <name>Nexus projects.itemis.de</name>
  66. <url>https://projects.itemis.de/nexus/content/repositories/OSR/</url>
  67. </pluginRepository>
  68. <pluginRepository>
  69. <id>snapshots</id>
  70. <name>Nexus projects.itemis.de</name>
  71. <url>https://projects.itemis.de/nexus/content/repositories/OSS/</url>
  72. </pluginRepository>
  73. </pluginRepositories>
  74. </project>