https://github.com/tsundberg/java-skeleton
A minimal Java skeleton using Maven
https://github.com/tsundberg/java-skeleton
Last synced: 4 months ago
JSON representation
A minimal Java skeleton using Maven
- Host: GitHub
- URL: https://github.com/tsundberg/java-skeleton
- Owner: tsundberg
- License: mit
- Created: 2016-10-18T04:53:19.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2016-10-18T05:15:14.000Z (about 9 years ago)
- Last Synced: 2025-02-23T20:41:27.437Z (10 months ago)
- Language: Java
- Homepage:
- Size: 2.93 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Java skeleton
A minimal project for getting started with Maven. It includes JUnit and a test that verifies that you can build and run unit tests.
Build:
mvn clean install
It builds with a warning. There is no production code so Maven will warn you that the resulting jar will be empty.
[WARNING] JAR will be empty - no content was marked for inclusion!
Include some production code and this warning will disappear.