mirror of
https://github.com/sigmasternchen/xtext-core
synced 2025-03-16 00:38:56 +00:00
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:
commit
99f6aacbae
6 changed files with 16 additions and 0 deletions
|
@ -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>
|
||||
|
|
|
@ -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>
|
||||
|
|
|
@ -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>
|
||||
|
|
|
@ -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>
|
||||
|
|
|
@ -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>
|
||||
|
|
|
@ -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();
|
||||
|
|
Loading…
Reference in a new issue