Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/spilth/java8-minimal-quickstart
Archetype for generating a minimal Java 8 Maven project
https://github.com/spilth/java8-minimal-quickstart
java java-8 maven maven-archetype
Last synced: about 5 hours ago
JSON representation
Archetype for generating a minimal Java 8 Maven project
- Host: GitHub
- URL: https://github.com/spilth/java8-minimal-quickstart
- Owner: spilth
- Created: 2017-06-02T14:06:59.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2017-06-02T14:47:13.000Z (over 7 years ago)
- Last Synced: 2024-12-03T08:25:14.257Z (about 2 months ago)
- Topics: java, java-8, maven, maven-archetype
- Size: 1.95 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Java 8 Minimal Quickstart
This is a Maven Archetype for starting a minimal Java 8 project. It includes the following:
- Configured to compile against Java 1.8
- Fixes warnings that Maven generates by default# Usage
To create a new project using this archetype:
```bash
$ mvn archetype:generate -B -DarchetypeGroupId=org.spilth -DarchetypeArtifactId=java8-minimal-quickstart -DgroupId=com.example -DartifactId=helloworld -Dversion=1.0.0
$ cd helloworld
$ mvn package
```For a less verbose way to use this archetype please check out [savant](http://spilth.org/projects/savant/).