Merge pull request #266 from eclipse/release_2.11.0_me_debug_info

fixed #265: Create pom.xml that installs Xtend Debug Info
This commit is contained in:
Miro Spönemann 2017-01-30 09:06:13 +01:00 committed by GitHub
commit 99f6aacbae
6 changed files with 16 additions and 0 deletions

View file

@ -113,7 +113,9 @@
<execution>
<goals>
<goal>compile</goal>
<goal>xtend-install-debug-info</goal>
<goal>testCompile</goal>
<goal>xtend-test-install-debug-info</goal>
</goals>
</execution>
</executions>

View file

@ -72,7 +72,9 @@
<execution>
<goals>
<goal>compile</goal>
<goal>xtend-install-debug-info</goal>
<goal>testCompile</goal>
<goal>xtend-test-install-debug-info</goal>
</goals>
</execution>
</executions>

View file

@ -115,7 +115,9 @@
<execution>
<goals>
<goal>compile</goal>
<goal>xtend-install-debug-info</goal>
<goal>testCompile</goal>
<goal>xtend-test-install-debug-info</goal>
</goals>
</execution>
</executions>

View file

@ -28,7 +28,9 @@
<execution>
<goals>
<goal>compile</goal>
<goal>xtend-install-debug-info</goal>
<goal>testCompile</goal>
<goal>xtend-test-install-debug-info</goal>
</goals>
</execution>
</executions>

View file

@ -316,7 +316,9 @@ class ParentProjectDescriptor extends ProjectDescriptor {
<execution>
<goals>
<goal>compile</goal>
<goal>xtend-install-debug-info</goal>
<goal>testCompile</goal>
<goal>xtend-test-install-debug-info</goal>
</goals>
</execution>
</executions>

View file

@ -1018,8 +1018,14 @@ public class ParentProjectDescriptor extends ProjectDescriptor {
_builder.append("<goal>compile</goal>");
_builder.newLine();
_builder.append("\t\t\t\t\t\t\t");
_builder.append("<goal>xtend-install-debug-info</goal>");
_builder.newLine();
_builder.append("\t\t\t\t\t\t\t");
_builder.append("<goal>testCompile</goal>");
_builder.newLine();
_builder.append("\t\t\t\t\t\t\t");
_builder.append("<goal>xtend-test-install-debug-info</goal>");
_builder.newLine();
_builder.append("\t\t\t\t\t\t");
_builder.append("</goals>");
_builder.newLine();