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
- Host: GitHub
- URL: https://github.com/tejasmr/maven-with-junit-template
- Owner: tejasmr
- Created: 2021-12-06T16:14:21.000Z (about 4 years ago)
- Default Branch: main
- Last Pushed: 2021-12-09T16:42:51.000Z (about 4 years ago)
- Last Synced: 2025-03-23T22:15:43.552Z (9 months ago)
- Topics: java, junit, maven, template
- Language: Java
- Homepage:
- Size: 9.77 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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