|
@@ -118,6 +118,20 @@
|
|
|
</plugins>
|
|
|
<pluginManagement>
|
|
|
<plugins>
|
|
|
+ <plugin>
|
|
|
+ <groupId>org.apache.maven.plugins</groupId>
|
|
|
+ <artifactId>maven-clean-plugin</artifactId>
|
|
|
+ <version>2.4.1</version>
|
|
|
+ </plugin>
|
|
|
+ <plugin>
|
|
|
+ <groupId>org.eclipse.xtend</groupId>
|
|
|
+ <artifactId>xtend-maven-plugin</artifactId>
|
|
|
+ <version>2.3.0</version>
|
|
|
+ <configuration>
|
|
|
+ <!-- need to prefix by basedir to generate to currently built module -->
|
|
|
+ <outputDirectory>${basedir}/xtend-gen</outputDirectory>
|
|
|
+ </configuration>
|
|
|
+ </plugin>
|
|
|
<!-- Avoid the generation of maven archive information in the META-INF
|
|
|
folder -->
|
|
|
<plugin>
|
|
@@ -161,6 +175,18 @@
|
|
|
</plugins>
|
|
|
</pluginManagement>
|
|
|
</build>
|
|
|
+ <pluginRepositories>
|
|
|
+ <pluginRepository>
|
|
|
+ <id>eclipse-xtend</id>
|
|
|
+ <url>http://build.eclipse.org/common/xtend/maven</url>
|
|
|
+ <releases>
|
|
|
+ <enabled>true</enabled>
|
|
|
+ </releases>
|
|
|
+ <snapshots>
|
|
|
+ <enabled>true</enabled>
|
|
|
+ </snapshots>
|
|
|
+ </pluginRepository>
|
|
|
+ </pluginRepositories>
|
|
|
<profiles>
|
|
|
<profile>
|
|
|
<id>Indigo.target</id>
|