Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | ||
6 | 7 | 8 | 9 | 10 | 11 | 12 |
13 | 14 | 15 | 16 | 17 | 18 | 19 |
20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 28 | 29 | 30 |
Tags
- AESCipher
- AWS
- handleMethodsArgumentNotValid
- KOSDAQ
- Auto Login
- pyinstaller
- mongodb
- Daishin Securities
- ExceptionHandler
- mime type
- Creon
- spec
- Version Control
- creon login
- EC2
- request param
- header
- API
- URI
- Instance
- WebServer
- stock trading
- Stock
- automated system
- The Internet
- Rest
- Web Crawler
- python
- RecursionError: maximum recursion depth exceeded while calling a Python object
- Slack
Archives
- Today
- Total
Change the Better World
How to install Gradle? 본문
You can install the Gradle build tool on Linux, macOS, or Windows.
Prerequisite is JDK which is Java Development Kit version 8 or higer than to run
To check, run java -version like below
> java -version
java version "1.8.0_151"
Java(TM) SE Runtime Environment (build 1.8.0_151-b12)
Java HotSpot(TM) 64-Bit Server VM (build 25.151-b12, mixed mode)
Gradle uses whatever JDK it finds in your path. Alternatively, you can set the JAVA_HOME environment variable to point to the installation directory of the desired JDK.
There are two ways to install gradle
1. sdk install gradle
- If you had SDKMAN which is a tool for managing parallel versions of multiple Software Development Kits on most Unix-like system(macOS, Linux, Cygwin, Solaris and FreeBSD).
2. brew install gradle
- If you isntalled Homebrew which is the missing package manager for macOS.
After finishing this task, now we can check the version of gradle
> gradle -v
-----------------------------------------------------------
Gradle 7.5.1
------------------------------------------------------------
(environment specific information)
'Build Automation > Gradle' 카테고리의 다른 글
How to change server port at Spring boot (0) | 2022.09.27 |
---|---|
How to run application using Gradle (0) | 2022.09.27 |
Let's learn some common tasks(clean, build, assemble) (0) | 2022.09.25 |
Error: Could not find or load main class org.gradle.wrapper.GradleWrapperMain (0) | 2022.09.25 |
What is the Gradle? (0) | 2022.09.25 |
Comments