Skip to content

Latest commit

 

History

History
14 lines (10 loc) · 350 Bytes

README.md

File metadata and controls

14 lines (10 loc) · 350 Bytes

Building Java Projects with Maven

This guide walks you through using Maven to build a simple Java project.

Compile Project


  • To Compile this project run the following command.

    mvn clean install

Run project


  • To run this project run the following command.

    java -cp target/hello-world-maven-0.1.0.jar hello.HelloWorld