Feb 20, 2024

Gradle

Installation

Download Gradle and extract it to /usr/gradle/

Configuration

Set PATH to extracted archive

$ vim ~/.profile

export GRADLE_PATH=/usr/gradle/7.x
export PATH=${PATH}:${GRADLE_PATH}/bin

$ source ~/.profile

Build

$ ./gradlew build -x test

Clean

$ ./gradlew clean --quiet

No comments:

Post a Comment

Kubernetes

kubectl installation $ curl -LO "https://dl.k8s.io/release/$(curl -L -s https://dl.k8s.io/release/stable.txt)/bin/linux/amd64/kubectl...