pom.xml 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  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>3.0.0-SNAPSHOT</version>
  10. <relativePath>../../releng/org.yakindu.sct.releng/pom.xml</relativePath>
  11. </parent>
  12. <artifactId>org.yakindu.sct.generator.genmodel.ui</artifactId>
  13. <groupId>org.yakindu.sct.plugins</groupId>
  14. <packaging>eclipse-plugin</packaging>
  15. <build>
  16. <plugins>
  17. <plugin>
  18. <artifactId>maven-resources-plugin</artifactId>
  19. <executions>
  20. <execution>
  21. <id>copy-resources</id>
  22. <phase>initialize</phase>
  23. <goals>
  24. <goal>copy-resources</goal>
  25. </goals>
  26. <configuration>
  27. <outputDirectory>${project.build.directory}/xtext</outputDirectory>
  28. <resources>
  29. <resource>
  30. <directory>src</directory>
  31. <includes>
  32. <include>**/*.xtext</include>
  33. <include>**/*.mwe2</include>
  34. </includes>
  35. </resource>
  36. </resources>
  37. </configuration>
  38. </execution>
  39. </executions>
  40. </plugin>
  41. <plugin>
  42. <artifactId>maven-clean-plugin</artifactId>
  43. <configuration>
  44. <filesets>
  45. <fileset>
  46. <directory>xtend-gen</directory>
  47. <includes>
  48. <include>**</include>
  49. </includes>
  50. <excludes>
  51. <exclude>.svn/</exclude>
  52. <exclude>.gitignore</exclude>
  53. </excludes>
  54. </fileset>
  55. </filesets>
  56. </configuration>
  57. </plugin>
  58. <plugin>
  59. <groupId>org.eclipse.xtend</groupId>
  60. <artifactId>xtend-maven-plugin</artifactId>
  61. <executions>
  62. <execution>
  63. <goals>
  64. <goal>compile</goal>
  65. </goals>
  66. </execution>
  67. </executions>
  68. </plugin>
  69. </plugins>
  70. </build>
  71. </project>