How to set JAVA_HOME path on Ubuntu

JAVA Home Path

Introduction JAVA_HOME is an operating system environment variable that stores the location of the java installation folder. Every time a java program or application is run, this variable is invoked. You need to set up the JAVA_HOME variable correctly to run your java program otherwise you will encounter this error message “Error: JAVA_HOME is not ... Read more

How to check .deb Package Dependencies in Ubuntu

Ubuntu Package dependencies

Most software or application in Ubuntu, does not come as one package and it depends on other packages to work as intended. These supporting packages are called dependency packages as they are required for the proper working of the software. Usually, the package manager in your system automatically resolves these dependencies, but sometimes an issue ... Read more

How to Install Gradle Build Tool on Debian

Gradle installation on Debian Linux

Gradle is a build automation tool that is built on the ideas of Apache Ant and Apache Maven. Gradle replaces the XML form used by Apache Maven for defining the project settings with a Groovy-based domain-specific language (DSL). Gradle is using a Groovy-based DSL, which is more convenient for developers. This DSL also provides for ... Read more