前往小程序,Get更优阅读体验!
立即前往
首页
学习
活动
专区
工具
TVP
发布
社区首页 >专栏 >Gradle 环境安装Installation

Gradle 环境安装Installation

作者头像
一个会写诗的程序员
发布2018-12-06 11:26:46
8970
发布2018-12-06 11:26:46
举报
文章被收录于专栏:一个会写诗的程序员的博客

Installation

The current Gradle release is 4.10.2. You can download binaries and view docs for all Gradle versions from the releases page.

Prerequisites

Gradle runs on all major operating systems and requires only a Java JDK or JRE version 7 or higher to be installed. To check, run java -version:

代码语言:javascript
复制
$ java -version
java version "1.8.0_121"

Additional resources

  • On-demand and live online training is available for free to Gradle users.
  • Self-paced tutorials are a good place to try Gradle with a variety of languages in addition to the docs.
  • Gradle has a new visual build inspection tool called build scans.
  • Finally, the Gradle Newsletter is a great way to keep UP-TO-DATE, with issues crafted monthly.

Install

Install with a package manager

SDKMAN! is a tool for managing parallel versions of multiple Software Development Kits on most Unix-based systems.

代码语言:javascript
复制
$ sdk install gradle 4.10.2

Homebrew is “the missing package manager for macOS”.

代码语言:javascript
复制
$ brew install gradle

Scoop is a command-line installer for Windows inspired by Homebrew.

代码语言:javascript
复制
$ scoop install gradle

Chocolatey is “the package manager for Windows”.

代码语言:javascript
复制
$ choco install gradle

MacPorts is a system for managing tools on macOS:

代码语言:javascript
复制
$ sudo port install gradle
› Additional helpful information

Install manually

Step 1. Download the latest Gradle distribution

The current Gradle release is version 4.10.2, released on 19 Sep 2018. The distribution zip file comes in two flavors:

If in doubt, choose the binary-only version and browse docs and sources online.

Need to work with an older version? See the releases page.

Step 2. Unpack the distribution
Linux & MacOS users

Unzip the distribution zip file in the directory of your choosing, e.g.:

代码语言:javascript
复制
$ mkdir /opt/gradle
$ unzip -d /opt/gradle gradle-4.10.2-bin.zip
$ ls /opt/gradle/gradle-4.10.2
LICENSE  NOTICE  bin  getting-started.html  init.d  lib  media
Microsoft Windows users

Create a new directory C:\Gradle with File Explorer.

Open a second File Explorer window and go to the directory where the Gradle distribution was downloaded. Double-click the ZIP archive to expose the content. Drag the content folder gradle-4.10.2 to your newly created C:\Gradle folder.

Alternatively you can unpack the Gradle distribution ZIP into C:\Gradle using an archiver tool of your choice.

Step 3. Configure your system environment
Linux & MacOS users

Configure your PATH environment variable to include the bin directory of the unzipped distribution, e.g.:

代码语言:javascript
复制
 $ export PATH=$PATH:/opt/gradle/gradle-4.10.2/bin
Microsoft Windows users

In File Explorer right-click on the This PC (or Computer) icon, then click Properties -> Advanced System Settings -> Environmental Variables.

Under System Variables select Path, then click Edit. Add an entry for C:\Gradle\gradle-4.10.2\bin. Click OK to save.

Step 4. Verify your installation

Open a console (or a Windows command prompt) and run gradle -v to run gradle and display the version, e.g.:

代码语言:javascript
复制
$ gradle -v

------------------------------------------------------------
Gradle 4.10.2
------------------------------------------------------------
› Additional helpful information

Upgrade with the Gradle Wrapper

If your existing Gradle-based build uses the Gradle Wrapper, you can easily upgrade by running the wrapper task, specifying the desired Gradle version:

代码语言:javascript
复制
$ ./gradlew wrapper --gradle-version=4.10.2 --distribution-type=bin

Note that it is not necessary for Gradle to be installed to use the Gradle wrapper. The next invocation of gradlew or gradlew.bat will download and cache the specified version of Gradle.

代码语言:javascript
复制
$ ./gradlew tasks
Downloading https://services.gradle.org/distributions/gradle-4.10.2-bin.zip
...
› Additional helpful information

Older Releases

You can find all releases and their checksums on the releases page.

Command-Line Completion

Command-line completion scripts are available for bash and zsh. This provides completion for Gradle tasks and command-line options.

本文参与 腾讯云自媒体同步曝光计划,分享自作者个人站点/博客。
原始发表:2018.11.05 ,如有侵权请联系 cloudcommunity@tencent.com 删除

本文分享自 作者个人站点/博客 前往查看

如有侵权,请联系 cloudcommunity@tencent.com 删除。

本文参与 腾讯云自媒体同步曝光计划  ,欢迎热爱写作的你一起参与!

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
目录
  • Installation
    • Prerequisites
      • Additional resources
        • Install
          • Install with a package manager
          • Install manually
        • Upgrade with the Gradle Wrapper
          • Older Releases
            • Command-Line Completion
            领券
            问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档