pom.xml 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  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.generator.c</artifactId>
  13. <groupId>org.yakindu.sct.plugins</groupId>
  14. <packaging>eclipse-plugin</packaging>
  15. <build>
  16. <plugins>
  17. <plugin>
  18. <groupId>org.eclipse.tycho</groupId>
  19. <artifactId>tycho-source-plugin</artifactId>
  20. <version>${tycho-version}</version>
  21. <executions>
  22. <execution>
  23. <id>plugin-source</id>
  24. <goals>
  25. <goal>plugin-source</goal>
  26. </goals>
  27. </execution>
  28. </executions>
  29. </plugin>
  30. <plugin>
  31. <artifactId>maven-clean-plugin</artifactId>
  32. <configuration>
  33. <filesets>
  34. <fileset>
  35. <directory>xtend-gen</directory>
  36. <includes>
  37. <include>**</include>
  38. </includes>
  39. <excludes>
  40. <exclude>.gitignore</exclude>
  41. <exclude>.svn/</exclude>
  42. </excludes>
  43. </fileset>
  44. </filesets>
  45. </configuration>
  46. </plugin>
  47. <plugin>
  48. <groupId>org.eclipse.xtend</groupId>
  49. <artifactId>xtend-maven-plugin</artifactId>
  50. <executions>
  51. <execution>
  52. <goals>
  53. <goal>compile</goal>
  54. </goals>
  55. </execution>
  56. </executions>
  57. </plugin>
  58. </plugins>
  59. </build>
  60. </project>