March 09
Prof. Ismael H. F. Santos                                                                               2
Surefire plugin (which executes the test) looks for tests contained in files with a particular naming convention. By default the ff tests are included:
•**/*Test.java
•**/Test*.java
•**/*TestCase.java
Conversely, the ff tests are excluded:
•**/Abstract*Test.java
•**/Abstract*TestCase.java
7.Create a basic website for your project. Execute the ff command:
c:\my-app> mvn site
8.To clean and remove target directory. Execute the ff command:
c:\my-app> mvn clean
Creating your First Maven Project