https://github.com/jlong/hello-java
Canonical hello world program in Java
https://github.com/jlong/hello-java
Last synced: about 2 months ago
JSON representation
Canonical hello world program in Java
- Host: GitHub
- URL: https://github.com/jlong/hello-java
- Owner: jlong
- License: mit
- Created: 2016-10-14T18:12:36.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2016-10-17T15:40:32.000Z (over 9 years ago)
- Last Synced: 2025-05-25T16:51:41.075Z (about 1 year ago)
- Language: Java
- Homepage:
- Size: 8.79 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Hello
Canonical hello world program in Java.
# Building
You will need to have Maven installed. I recommend installing with HomeBrew..
To build the jar file with Maven, run:
mvn package
This will create `hello-1.0-SNAPSHOT.jar` in the `target/` directory.
# Tests
To run tests, use Maven:
mvn test
Tests are written in JUnit.