pom.xml 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  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.4.0-SNAPSHOT</version>
  10. <relativePath>../../releng/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. <artifactId>maven-clean-plugin</artifactId>
  19. <configuration>
  20. <filesets>
  21. <fileset>
  22. <directory>xtend-gen</directory>
  23. <includes>
  24. <include>**</include>
  25. </includes>
  26. <excludes>
  27. <exclude>.gitignore</exclude>
  28. <exclude>.svn/</exclude>
  29. </excludes>
  30. </fileset>
  31. </filesets>
  32. </configuration>
  33. </plugin>
  34. <plugin>
  35. <groupId>org.eclipse.xtend</groupId>
  36. <artifactId>xtend-maven-plugin</artifactId>
  37. <executions>
  38. <execution>
  39. <goals>
  40. <goal>compile</goal>
  41. </goals>
  42. </execution>
  43. </executions>
  44. </plugin>
  45. </plugins>
  46. </build>
  47. </project>