Skip to content

Minimal Java 8 Maven Archetype with `README` and `.gitignore`

License

Notifications You must be signed in to change notification settings

spodin/j8-minimal

Repository files navigation

Minimal Java 8 Maven Archetype

Build Status License Maven Central

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

Structure

.
├── .gitignore
├── pom.xml
├── README.md
└── src
    ├── main
    │   ├── java
    │   │   └── {package}
    │   │       └── Application.java
    │   └── resources
    └── test
        └── java
            └── {package}
                └── ApplicationTest.java