Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  • Install JDK 8. Please make sure "JAVA_HOME" is set.

    Code Block
    $ sudo apt-get update
    $ sudo apt-get install default-jdk

    For more detail, you can refer to https://www.digitalocean.com/community/tutorials/how-to-install-java-on-ubuntu-with-apt-get.

    Set the "JAVA_HOME" by edit the file /etc/environment

    Code Block
    $ sudo nano /etc/environment

    In this file, add the following line :

    Code Block
    JAVA_HOME="/usr/lib/jvm/java-8-openjdk-amd64"

    Now reload the file and test:

    Code Block
    $ source /etc/environment
    $ echo $JAVA_HOME
  • Install Apache Maven 2.2.1 or above. Please make sure "mvn" command is able to execute from command line.

    Code Block
    $ sudo apt-get install maven
    $ mvn -version
  • Install GitHub ClientGit.

    Code Block
    $ sudo apt-get install git
    $ git --version

...

Code Block
$ mkdir joget_src
$ cd joget_src
$ git clone https://github.com/jogetworkflow/jw-community.git --branch 67.0-SNAPSHOT --depth 1
$ cd ~

...