Skip to content

Instantly share code, notes, and snippets.

@kprasad99
kprasad99 / install_maven_ubuntu_18_04.adoc
Last active January 17, 2019 05:41
Install Maven in Ubuntu 18.04

Install Maven 3.6 in Ubuntu 18.04

Below are the steps to install maven in ubuntu 18.04 from tar file instead of default maven version for apt repository.

  • Download latest maven distribution from Maven download URL(from here ).

$ wget http://mirrors.estointernet.in/apache/maven/maven-3/3.6.0/binaries/apache-maven-3.6.0-bin.tar.gz
  • Extract distribution.


@kprasad99
kprasad99 / install_jdk_ubuntu_18_04.adoc
Created January 16, 2019 19:39
Install OpenJDK 8/11 on ubuntu 18.04

Install OpenJDK 8/11 in Ubuntu 18.04

Below are the steps to install openjdk 8/11 in ubuntu 18.04. The default jdk shipped in ubuntu 18.04 is JDK-10.

  • Add Java PPA Repository.

    $ sudo add-apt-repository ppa:webupd8team/java
  • Update apt cache.