Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorCamille Letavernier2015-01-27 09:31:19 +0000
committerCamille Letavernier2015-01-27 09:31:39 +0000
commitd4aab3724ecd31bc3c9b57946dc00303a61ca22c (patch)
tree7a6de65dde59430153463adfd55b8887ba16972a /plugins/uml/textedit/org.eclipse.papyrus.uml.textedit.common.xtext/pom.xml
parentdb54ded1b44ae3f28ee4bcf37339a3128c691c91 (diff)
parentb8b258c1f26d5f36fdcb4bb05e1045ff4d97551b (diff)
downloadorg.eclipse.papyrus-d4aab3724ecd31bc3c9b57946dc00303a61ca22c.tar.gz
org.eclipse.papyrus-d4aab3724ecd31bc3c9b57946dc00303a61ca22c.tar.xz
org.eclipse.papyrus-d4aab3724ecd31bc3c9b57946dc00303a61ca22c.zip
Synchronize with master
Diffstat (limited to 'plugins/uml/textedit/org.eclipse.papyrus.uml.textedit.common.xtext/pom.xml')
-rw-r--r--plugins/uml/textedit/org.eclipse.papyrus.uml.textedit.common.xtext/pom.xml38
1 files changed, 38 insertions, 0 deletions
diff --git a/plugins/uml/textedit/org.eclipse.papyrus.uml.textedit.common.xtext/pom.xml b/plugins/uml/textedit/org.eclipse.papyrus.uml.textedit.common.xtext/pom.xml
index c72e0406d06..5b07385d8a8 100644
--- a/plugins/uml/textedit/org.eclipse.papyrus.uml.textedit.common.xtext/pom.xml
+++ b/plugins/uml/textedit/org.eclipse.papyrus.uml.textedit.common.xtext/pom.xml
@@ -11,4 +11,42 @@
<groupId>org.eclipse.papyrus</groupId>
<version>1.1.0-SNAPSHOT</version>
<packaging>eclipse-plugin</packaging>
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-compiler-plugin</artifactId>
+ </plugin>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-clean-plugin</artifactId>
+ <configuration>
+ <filesets>
+ <fileset>
+ <directory>xtend-gen</directory>
+ <includes>
+ <include>**</include>
+ </includes>
+ </fileset>
+ </filesets>
+ </configuration>
+ </plugin>
+ <plugin>
+ <groupId>org.eclipse.xtend</groupId>
+ <artifactId>xtend-maven-plugin</artifactId>
+ <executions>
+ <execution>
+ <phase>generate-sources</phase>
+ <goals>
+ <goal>compile</goal>
+ </goals>
+ </execution>
+ </executions>
+ <configuration>
+ <outputDirectory>xtend-gen</outputDirectory>
+ <testOutputDirectory>${project.build.directory}/xtend-gen/test</testOutputDirectory>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
</project> \ No newline at end of file

Back to the top