mirror of
https://github.com/sigmasternchen/xtext-core
synced 2025-03-15 16:28:56 +00:00
Merge pull request #356 from eclipse/cd_eclipse_issue272
Fixed problem with the initial build after project creation in maven tycho
This commit is contained in:
commit
f7993d9e87
5 changed files with 8 additions and 0 deletions
|
@ -247,6 +247,7 @@
|
|||
<version>${tycho-version}</version>
|
||||
<configuration>
|
||||
<compilerArgument>-err:-forbidden</compilerArgument>
|
||||
<useProjectSettings>false</useProjectSettings>
|
||||
</configuration>
|
||||
</plugin>
|
||||
</plugins>
|
||||
|
|
|
@ -206,6 +206,7 @@
|
|||
<version>${tycho-version}</version>
|
||||
<configuration>
|
||||
<compilerArgument>-err:-forbidden</compilerArgument>
|
||||
<useProjectSettings>false</useProjectSettings>
|
||||
</configuration>
|
||||
</plugin>
|
||||
</plugins>
|
||||
|
|
|
@ -249,6 +249,7 @@
|
|||
<version>${tycho-version}</version>
|
||||
<configuration>
|
||||
<compilerArgument>-err:-forbidden</compilerArgument>
|
||||
<useProjectSettings>false</useProjectSettings>
|
||||
</configuration>
|
||||
</plugin>
|
||||
</plugins>
|
||||
|
|
|
@ -456,6 +456,7 @@ class ParentProjectDescriptor extends ProjectDescriptor {
|
|||
<version>${tycho-version}</version>
|
||||
<configuration>
|
||||
<compilerArgument>-err:-forbidden</compilerArgument>
|
||||
<useProjectSettings>false</useProjectSettings>
|
||||
</configuration>
|
||||
</plugin>
|
||||
«ENDIF»
|
||||
|
|
|
@ -1495,6 +1495,10 @@ public class ParentProjectDescriptor extends ProjectDescriptor {
|
|||
_builder.append("<compilerArgument>-err:-forbidden</compilerArgument>");
|
||||
_builder.newLine();
|
||||
_builder.append("\t\t\t");
|
||||
_builder.append("\t\t");
|
||||
_builder.append("<useProjectSettings>false</useProjectSettings>");
|
||||
_builder.newLine();
|
||||
_builder.append("\t\t\t");
|
||||
_builder.append("\t");
|
||||
_builder.append("</configuration>");
|
||||
_builder.newLine();
|
||||
|
|
Loading…
Reference in a new issue