|
@@ -18,12 +18,17 @@
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
</properties>
|
|
|
<build>
|
|
|
- <!--resources>
|
|
|
- <resource>
|
|
|
- <directory> [your folder here] </directory>
|
|
|
- </resource>
|
|
|
- </resources-->
|
|
|
+ <!--resources> <resource> <directory> [your folder here] </directory> </resource>
|
|
|
+ </resources -->
|
|
|
<plugins>
|
|
|
+ <plugin>
|
|
|
+ <groupId>org.apache.maven.plugins</groupId>
|
|
|
+ <artifactId>maven-resources-plugin</artifactId>
|
|
|
+ <version>2.5</version>
|
|
|
+ <configuration>
|
|
|
+ <encoding>UTF-8</encoding>
|
|
|
+ </configuration>
|
|
|
+ </plugin>
|
|
|
<plugin>
|
|
|
<!-- enable tycho build extension -->
|
|
|
<groupId>org.eclipse.tycho</groupId>
|
|
@@ -209,17 +214,44 @@
|
|
|
<plugin>
|
|
|
<groupId>org.eclipse.xtend</groupId>
|
|
|
<artifactId>xtend-maven-plugin</artifactId>
|
|
|
- <version>2.3.0</version>
|
|
|
+ <version>2.4.0-SNAPSHOT</version>
|
|
|
<configuration>
|
|
|
<!-- need to prefix by basedir to generate to currently built module -->
|
|
|
<outputDirectory>${basedir}/xtend-gen</outputDirectory>
|
|
|
- <dependency>
|
|
|
- <groupId>org.antlr</groupId>
|
|
|
- <artifactId>antlr-runtime</artifactId>
|
|
|
- <version>3.2</version>
|
|
|
- </dependency>
|
|
|
</configuration>
|
|
|
</plugin>
|
|
|
+ <plugin>
|
|
|
+ <groupId>${tycho-groupid}</groupId>
|
|
|
+ <artifactId>tycho-p2-repository-plugin</artifactId>
|
|
|
+ <version>${tycho-version}</version>
|
|
|
+ </plugin>
|
|
|
+ <!-- APACHE MAVEN PLUGINS -->
|
|
|
+ <plugin>
|
|
|
+ <groupId>org.apache.maven.plugins</groupId>
|
|
|
+ <artifactId>maven-antrun-plugin</artifactId>
|
|
|
+ <version>1.3</version>
|
|
|
+ </plugin>
|
|
|
+ <plugin>
|
|
|
+ <groupId>org.apache.maven.plugins</groupId>
|
|
|
+ <artifactId>maven-assembly-plugin</artifactId>
|
|
|
+ <version>2.2-beta-4</version>
|
|
|
+ </plugin>
|
|
|
+ <plugin>
|
|
|
+ <artifactId>maven-release-plugin</artifactId>
|
|
|
+ <configuration>
|
|
|
+ <preparationGoals>clean -DnewVersion=${releaseVersion}
|
|
|
+ -Dprudent=true
|
|
|
+ org.eclipse.tycho:tycho-versions-plugin:set-version
|
|
|
+ verify
|
|
|
+ scm:checkin</preparationGoals>
|
|
|
+ <arguments>-Prelease</arguments>
|
|
|
+ </configuration>
|
|
|
+ </plugin>
|
|
|
+ <plugin>
|
|
|
+ <groupId>org.eclipse.dash.maven</groupId>
|
|
|
+ <artifactId>eclipse-signing-maven-plugin</artifactId>
|
|
|
+ <version>1.0.2</version>
|
|
|
+ </plugin>
|
|
|
</plugins>
|
|
|
</pluginManagement>
|
|
|
</build>
|
|
@@ -377,10 +409,11 @@
|
|
|
</profiles>
|
|
|
|
|
|
<modules>
|
|
|
- <!-- Removed because tycho can't build, if dependency to patched feature exists -->
|
|
|
-<!-- <module>../org.eclipse.gmf.runtime.emf.clipboard.core</module> -->
|
|
|
-<!-- <module>../org.eclipse.gmf.runtime.emf.clipboard.core.patch-feature</module> -->
|
|
|
-
|
|
|
+ <!-- Removed because tycho can't build, if dependency to patched feature
|
|
|
+ exists -->
|
|
|
+ <!-- <module>../org.eclipse.gmf.runtime.emf.clipboard.core</module> -->
|
|
|
+ <!-- <module>../org.eclipse.gmf.runtime.emf.clipboard.core.patch-feature</module> -->
|
|
|
+
|
|
|
<module>../org.yakindu.sct.commons</module>
|
|
|
<module>../org.yakindu.sct.doc.user</module>
|
|
|
<module>../org.yakindu.sct.examples.trafficlight</module>
|