https://github.com/spodin/j8-minimal
Minimal Java 8 Maven Archetype with `README` and `.gitignore`
https://github.com/spodin/j8-minimal
archetype java8 maven minimal
Last synced: 30 days ago
JSON representation
Minimal Java 8 Maven Archetype with `README` and `.gitignore`
- Host: GitHub
- URL: https://github.com/spodin/j8-minimal
- Owner: spodin
- License: unlicense
- Created: 2017-02-06T14:50:20.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2017-02-20T07:42:26.000Z (over 9 years ago)
- Last Synced: 2025-09-08T10:57:01.504Z (9 months ago)
- Topics: archetype, java8, maven, minimal
- Language: Shell
- Homepage:
- Size: 62.5 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Minimal Java 8 Maven Archetype
[](https://travis-ci.org/spodin/j8-minimal)
[](LICENSE)
[](http://mvnrepository.com/artifact/com.vasiliyspodin/j8-minimal)
The project is a minimal Maven archetype for plain Java 8 application.
This artifact is available via the Maven Central Repository and can be automatically installed using the `mvn archetype:generate` invocation:
`mvn archetype:generate -Dfilter=com.vasiliyspodin:j8-minimal`
## Generated Project
### Included Dependencies
- [JUnit 4.12](https://mvnrepository.com/artifact/junit/junit/4.12)
### Structure
```
.
├── .gitignore
├── pom.xml
├── README.md
└── src
├── main
│ ├── java
│ │ └── {package}
│ │ └── Application.java
│ └── resources
└── test
└── java
└── {package}
└── ApplicationTest.java
```