Create Maven WebApp project in Eclipse Error:
Could not resolve archetype org.apache.maven.archetypes:maven-archetype-webapp:1.0 from any of the configured Repositories.
The problem occurs because the Maven-archetype-webapp package is missing from the local repository, or it may not be fully downloaded, such as only pom files, or only jar package files, etc.
The package path is: C:\Users\xxxx\. m2\repository\org\apache\maven\archetypes\maven-archetype-webapp\1.0
Workaround 1:
If there is no maven-archetype-webapp-1.0.jar under the path, delete the entire 1.0 folder. MAVEN will automatically re-download the jar file when you re-create the MAVEN project into eclipse.
Workaround 2:
Adding Maven-archetype-webapp dependencies to an existing project
This dependency is useless, purely to download Maven-archetype-webapp to a local repository
Or
Put Maven-archetype-webapp.jar into a local repository by any other means.
Pop-up error when creating a Maven WebApp project in Eclipse-workaround