| <?xml version="1.0" encoding="UTF-8"?> |
| <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| |
| <modelVersion>4.0.0</modelVersion> |
| |
| <parent> |
| <relativePath>../../build/org.eclipse.app4mc.transformation.build/pom.xml</relativePath> |
| <groupId>org.eclipse.app4mc.transformation</groupId> |
| <artifactId>org.eclipse.app4mc.transformation.build</artifactId> |
| <version>0.3.0-SNAPSHOT</version> |
| </parent> |
| |
| <artifactId>org.eclipse.app4mc.transformation.extensions</artifactId> |
| <packaging>eclipse-plugin</packaging> |
| |
| |
| |
| <build> |
| <plugins> |
| |
| <plugin> |
| <groupId>org.eclipse.xtend</groupId> |
| <artifactId>xtend-maven-plugin</artifactId> |
| <version>2.13.0</version> |
| <executions> |
| <execution> |
| <goals> |
| <goal>compile</goal> |
| <goal>xtend-install-debug-info</goal> |
| <goal>testCompile</goal> |
| <goal>xtend-test-install-debug-info</goal> |
| </goals> |
| </execution> |
| </executions> |
| <configuration> |
| <outputDirectory>xtend-gen</outputDirectory> |
| </configuration> |
| </plugin> |
| |
| |
| |
| </plugins> |
| </build> |
| </project> |