Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFred Bricon2014-04-25 09:30:03 +0000
committerFred Bricon2014-04-25 09:30:03 +0000
commit21bde2de0ec260e928d66802b0e0bd9f5834ff1e (patch)
treea4b27ac6a449f823959d4ae48d7b51ac6d23d4c6
parent653aed526a092707173b5de7f590170fbf52d9b5 (diff)
downloadm2e-core-21bde2de0ec260e928d66802b0e0bd9f5834ff1e.tar.gz
m2e-core-21bde2de0ec260e928d66802b0e0bd9f5834ff1e.tar.xz
m2e-core-21bde2de0ec260e928d66802b0e0bd9f5834ff1e.zip
433496 : maven-compiler-plugin template should target Java 1.7
Change-Id: I66341006e0ba8302f466a82e26d2ae64d05d9806 Signed-off-by: Fred Bricon <fbricon@gmail.com>
-rw-r--r--org.eclipse.m2e.editor.xml/plugin.xml4
1 files changed, 2 insertions, 2 deletions
diff --git a/org.eclipse.m2e.editor.xml/plugin.xml b/org.eclipse.m2e.editor.xml/plugin.xml
index f04f5ca0..4a26041c 100644
--- a/org.eclipse.m2e.editor.xml/plugin.xml
+++ b/org.eclipse.m2e.editor.xml/plugin.xml
@@ -183,8 +183,8 @@
&lt;version&gt;3.1&lt;/version&gt;
&lt;configuration&gt;
&lt;!-- http://maven.apache.org/plugins/maven-compiler-plugin/ --&gt;
- &lt;source&gt;${cursor}1.6&lt;/source&gt;
- &lt;target&gt;1.6&lt;/target&gt;
+ &lt;source&gt;${cursor}1.7&lt;/source&gt;
+ &lt;target&gt;1.7&lt;/target&gt;
&lt;/configuration&gt;
&lt;/plugin&gt;</pattern>
</template>

Back to the top