Go to the Maven project location and find your newly created project first-maven-project.
first-maven-project
The project structure would contain src and pom.xml files. This is a standard structure that Maven creates.
src
pom.xml
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.
com.fresco.play.App.java
com.fresco.play.AppTest.java files
Project creation can be considered successful if you see this kind of a structure.