原文:http://crunchify.com/how-to-fix-cannot-change-version-of-project-facet-dynamic-web-module-to-3-0-error-in-eclipse/
Today while converting Dynamic Web Project to Maven project I got below Error:
|
1
2
|
3.0
satisfied
|
What steps I’ve performed to fix this?
In order to fix this first thing I did is to change Project Facets settings.
-
Right click on Projectin Eclipse - Click on
Properties - Click on
Project FacetsTab - Change value from
3.1to3.0for Dynamic Web Module as mentioned in below image.
Did it work? Nope.
But unfortunately I was not able to apply setting as Apply and OK button was grayed out with error msg:Cannot change version of project facet Dynamic Web Module to 3.0.
I was literally stuck at this point.
Then I’ve looked at my pom.xml file. I’ve converted Dynamic Web Project to Maven Project by following steps in article.
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
|
By default Eclipse adds above <build> block to pom.xml file and that is THE problem for this error: Cannot change version of project facet Dynamic Web Module to 3.0.
How to fix?
Step-1
Just replace <build> block with this one.
|
1
2
3
4
5
6
7
8
9
10
11
12
13
|
>
>
>
>
>
>
>
>
>
>
>
>
>
|
Step-2
- Right Click on Project
- Click Maven
- Click Update Project
or
- use Quick Fix from error console