I created a project in Eclipse (Oxygen) using maven with no archetype. My question is ... to use the Servlet API, if I use "Project Properties> Project Faces" and add "Dynamic Web Module", is it the same as adding the dependency in pom.xml of the Servlet API (javax. servlet-api)?
I mean...
Project Properties > Project Facets > Dynamic Web Module 4.0 (Checked)
Is the same as...?
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>javax.servlet-api</artifactId>
<version>4.0</version>
<scope>provided</scope>
</dependency>