vector_ever
Mitglied
Code:
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>1.7</source>
<target>1.7</target>
<showDeprecation>true</showDeprecation>
<showWarnings>true</showWarnings>
<executable>${env.JAVA_7_HOME}/bin/javac</executable>
<fork>true</fork>
</configuration>
</plugin>
</plugins>
</build>
wenn ich diese Abschnitt zu meiner pom.xml hinzufüge, kriege ich rote kreuz Zeichnen auf Name des Projekt (aber keine Fehler zeigt in pom.xml Datei)
warum denn so passiert?