Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFred Bricon2012-08-15 14:28:31 +0000
committerFred Bricon2012-08-15 14:28:31 +0000
commit4f4c40b364e952c5f57321d997476a70d9b35a1a (patch)
treec52e7fd8de9547fdaec621da3363a22d3b9024d2
parent14640782f40a3e3de8abd33a8943897217f3c8a9 (diff)
downloadm2e-core-4f4c40b364e952c5f57321d997476a70d9b35a1a.tar.gz
m2e-core-4f4c40b364e952c5f57321d997476a70d9b35a1a.tar.xz
m2e-core-4f4c40b364e952c5f57321d997476a70d9b35a1a.zip
Update maven plugin templates
- bumped maven-compiler-plugin version to 2.5.1 - fixed default maven-war-plugin>failOnMissingXml to true 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 3a552e1c..dfa63dd2 100644
--- a/org.eclipse.m2e.editor.xml/plugin.xml
+++ b/org.eclipse.m2e.editor.xml/plugin.xml
@@ -180,7 +180,7 @@
<pattern>&lt;plugin&gt;
&lt;groupId&gt;org.apache.maven.plugins&lt;/groupId&gt;
&lt;artifactId&gt;maven-compiler-plugin&lt;/artifactId&gt;
- &lt;version&gt;2.4&lt;/version&gt;
+ &lt;version&gt;2.5.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;
@@ -218,7 +218,7 @@
&lt;version&gt;2.2&lt;/version&gt;
&lt;configuration&gt;
&lt;!-- web.xml is not mandatory since JavaEE 5 --&gt;
- &lt;failOnMissingWebXml&gt;true&lt;/failOnMissingWebXml&gt;
+ &lt;failOnMissingWebXml&gt;false&lt;/failOnMissingWebXml&gt;
&lt;!--
&lt;filteringDeploymentDescriptors&gt;true&lt;/filteringDeploymentDescriptors&gt;
&lt;warSourceDirectory&gt;WebContent&lt;/warSourceDirectory&gt;

Back to the top