Skip to content

Latest commit

 

History

History
21 lines (13 loc) · 615 Bytes

BUILD.md

File metadata and controls

21 lines (13 loc) · 615 Bytes

To build qrcode-desktop, you need following software installed on your system:

  • Java JDK 1.6+
  • Apache Maven

steps to build

  • open a terminal and cd to the project directory
  • type mvn clean package
  • if the build was successful, the executable Java archive is stored in target/

running from project directory

  • open a terminal and cd to the project directory
  • type mvn clean compile exec:java

running the jar

  • open a terminal and cd into the directory containing the jar file
  • java -jar qrcode-desktop-x.y.z.jar (replace 'x.y.z' with the actual version)