0 votes
in DevOps by
How to Verify and Compile Maven WAR Project

1 Answer

0 votes
by
  • first-war-project will be created with pom.xml file and src folder.

  • Open pom.xml file and verify that packaging value is changed to war.

  • In src >main > web app path is create.

  • Change the folder path by entering cd my-war-project.

  • To compile type mvn compile.

...