Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFrancois Le Fevre2015-01-14 12:57:10 +0000
committerFrancois Le Fevre2015-01-14 16:25:46 +0000
commitd98711efd71d80099643de750438e00d8e1afb03 (patch)
treee015a18957bb4b1db7edf313597cb05ebb4c46ff /plugins
parent3b261a72f03fbd76b6f4c67aa70185b36e720e56 (diff)
downloadorg.eclipse.papyrus-d98711efd71d80099643de750438e00d8e1afb03.tar.gz
org.eclipse.papyrus-d98711efd71d80099643de750438e00d8e1afb03.tar.xz
org.eclipse.papyrus-d98711efd71d80099643de750438e00d8e1afb03.zip
Bug 447895: Xtend code generation at build time
Change-Id: I9925e759d254e9fb6428d5bf4b538f721fdcdb9f Signed-off-by: Francois Le Fevre <francois.le-fevre@cea.fr>
Diffstat (limited to 'plugins')
-rw-r--r--plugins/infra/gmfdiag/css/org.eclipse.papyrus.infra.gmfdiag.css.xtext/pom.xml25
1 files changed, 25 insertions, 0 deletions
diff --git a/plugins/infra/gmfdiag/css/org.eclipse.papyrus.infra.gmfdiag.css.xtext/pom.xml b/plugins/infra/gmfdiag/css/org.eclipse.papyrus.infra.gmfdiag.css.xtext/pom.xml
index 96259093213..8e80210ab0f 100644
--- a/plugins/infra/gmfdiag/css/org.eclipse.papyrus.infra.gmfdiag.css.xtext/pom.xml
+++ b/plugins/infra/gmfdiag/css/org.eclipse.papyrus.infra.gmfdiag.css.xtext/pom.xml
@@ -11,4 +11,29 @@
<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.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