Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

The ExampleMavenProject module contains the following files essential files and directories.

No Format
build.sh
maven.xml
project.properties
project.xml
src
src/ExampleMavenProject.java
test
test/ExampleMavenProjectTest.java

build.sh is a helper script for building the project with a set of maven commands.

...

The src dir contains Java source files.

The test directory contains unit tests that use the JUnit testing framework.

There are two additional test files.

No Format

src/ExampleMavenProject.java
test/ExampleMavenProjectTest.java

The src/ExampleMavenProject.java is a simple example of a Java source file.The test directory contains unit tests that use the JUnit testing framework.

The file test/ExampleMavenProjectTest.java is a simple example basic test case template.

Using as a Template

To use ExampleMavenProject as a template for your own new project, replace the "ExampleMavenProject" string with the actual name of your own project in project.xml.

...