An open API service indexing awesome lists of open source software.

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

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.