An open API service indexing awesome lists of open source software.

https://github.com/tejasmr/maven-with-junit-template

Java project template with maven and junit
https://github.com/tejasmr/maven-with-junit-template

java junit maven template

Last synced: 3 months ago
JSON representation

Java project template with maven and junit

Awesome Lists containing this project

README

          

# maven-with-junit-template

> Remember to remove the contents of this README.md when you use this template.

Define your
- group id: com.example
- artifact id: junit-build
- name: Maven with Junit Template

all in pom.xml

Folder/File Structure

```
- src
|- main
| |- java
| | |- com
| | | |- example
| | | | |- Pop.java
|- test
| |- java
| | |- com
| | | |- example
| | | | |- PopTest.java
```

Here package name will be com.example, you can have your own package name. Note that the package name is same as group id.

All source files in src/main/java/com/example/*

All test files in src/test/java/com/example/*

For javadoc along with this, check : https://github.com/tezz-io/maven-with-junit-javadoc-template