Installing Java SDK

    Follow the following steps:

    1. Download Oracle Java SE 8.0 from http://www.oracle.com/technetwork/java/javase/downloads/index.html

    Linux / UNIX

    Most Linux systems either have JDK preinstalled or allow installing it through a package management system. Notice however that they have OpenJDK as the default Java implementation. While it is known to have worked with Vaadin and possibly also with the development toolchain, we do not especially support it.

    Regarding OS X, notice that JDK 1.6 or newer is included in OS X 10.6 and newer.

    1. Decompress it under a suitable base directory, such as /opt. For example, for Java SDK, enter (either as root or with sudo in Linux):

    1. Set up the JAVA_HOME environment variable to point to the Java installation directory. Also, include the $JAVA_HOME/bin in the PATH. How you do that varies by the UNIX variant. For example, in Linux and using the Bash shell, you would add lines such as the following to the .bashrc or .profile script in your home directory:
    1. export JAVA_HOME=/opt/jdk1.8.0_31
    2. ```
    3. You could also make the setting system-wide in a file such as /etc/bash.bashrc, /etc/profile, or an equivalent file. If you install Apache Ant or Maven, you may also want to set up those in the path.