I want to change org.eclipse.wst.common.project.facet.core.xml in .settings
<?xml version="1.0" encoding="UTF-8"?> <faceted-project> <fixed facet="wst.jsdt.web"/> <installed facet="java" version="1.5"/> <installed facet="jst.web" version="2.3"/> <installed facet="wst.jsdt.web" version="1.0"/> </faceted-project>
I would like to change the java version above to 1.6 and web to 3.0; I can change it manually by opening it in notepad, but after that from eclipse (Kepler), if I try to update the Maven β update project, it says about the error "Unable to change the torch version of the Dynamic Web Module project to 2.3."
How can I make maven know that I want to create a web application with version 3.0 and the specified version of java.
I am creating a maven project (archetype like webapp).
source share