0 votes
in DevOps by
How to Verify Maven Project Creation?

1 Answer

0 votes
by
  • Go to the Maven project location and find your newly created project first-maven-project.

  • The project structure would contain src and pom.xml files. This is a standard structure that Maven creates.

  • src folder holds the com.fresco.play.App.java file and com.fresco.play.AppTest.java files, which are the source code and test code files.

Project creation can be considered successful if you see this kind of a structure.

...