https://github.com/jeremycook123/java11-junit5-archetype
Maven Java11 JUnit5 Archetype
https://github.com/jeremycook123/java11-junit5-archetype
devops java jdk11 junit5 maven
Last synced: about 1 year ago
JSON representation
Maven Java11 JUnit5 Archetype
- Host: GitHub
- URL: https://github.com/jeremycook123/java11-junit5-archetype
- Owner: jeremycook123
- Created: 2020-11-09T05:15:51.000Z (over 5 years ago)
- Default Branch: main
- Last Pushed: 2020-11-09T18:44:04.000Z (over 5 years ago)
- Last Synced: 2025-01-13T06:29:32.591Z (over 1 year ago)
- Topics: devops, java, jdk11, junit5, maven
- Language: Java
- Homepage:
- Size: 5.86 KB
- Stars: 0
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Maven Quickstart Archetype - Java 11 + JUnit5
## Summary
The project is a Maven archetype for Java 11 and JUnit5
## Prerequisites
* JDK 11
* Maven 3
## Install Archetype Locally
To install the archetype in your local repository execute the following commands:
```bash
git clone https://github.com/jeremycook123/java11-junit5-archetype.git
cd java11-junit5-archetype
mvn clean install
```
## Maven Create/Generate New Java Project
```bash
mvn archetype:generate \
-DarchetypeGroupId=com.cloudacademy.devops \
-DarchetypeArtifactId=java11-junit5-archetype \
-DarchetypeVersion=1.0.0-SNAPSHOT \
-DgroupId=com.example \
-DartifactId=my-project \
-DinteractiveMode=false
```