I have a CRUD spring application that does not run because of dependencies. I need the part of packaging with \"war\" but could not reach it.
My pom.xml is:
In your pom.xml, you are setting spring-core as optional, which could be causing exclusion of the spring-core from the war file. Either remove the optional from the spring-core dependency or copy this jar under tomcat/lib folder, so that its available to the application. Here is the maven link for the optional dependencies:
Maven Optional Dependencies