微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

Ubuntu下安装最新版本的gradle以及在eclipse中新建gradle项目

文章目录

前言

今天在eclipse中创建gradle项目没成功,再一看发现自己的gradle还停留在1.4版本。所以决定卸载当前版本并安装最新版本。

查看当前版本

  • Ubuntu 14.04 系统(老系统了,一直在用)

查看版本,参考我以前的博客

apr@apr:~$ gradle -v
Picked up JAVA_TOOL_OPTIONS: -Dfile.encoding=UTF8

------------------------------------------------------------
Gradle 1.4
------------------------------------------------------------

Gradle build time: Monday, September 9, 2013 8:44:25 PM UTC
Groovy: 1.8.6
Ant: Apache Ant(TM) version 1.9.3 compiled on July 24 2018
Ivy: non official version
JVM: 1.7.0_201 (Oracle Corporation 24.201-b00)
OS: Linux 4.4.0-148-generic amd64


apr@apr:~$ dpkg -l gradle
Desired=UnkNown/Install/Remove/Purge/Hold
| Status=Not/Inst/Conf-files/Unpacked/halF-conf/Half-inst/trig-aWait/Trig-pend
|/ Err?=(none)/Reinst-required (Status,Err: uppercase=bad)
||/ Name                              Version               Architecture          Description
+++-=================================-=====================-=====================-========================================================================
ii  gradle                            1.4-2ubuntu1          all                   Groovy based build system
apr@apr:~$ 

版本太旧了。

先卸载

参考我以前的博客

sudo apt-get remove gradle
sudo apt-get remove --auto-remove gradle

# 运行了前两步之后,gradle貌似已经卸载干净,所以再运行接下来这2步的时候,已经在提示gralde没有安装了。
sudo apt-get purge gradle
sudo apt-get purge --auto-remove gradle

然后下载、安装

这个当然是去官网了:

下载地址:

当然是下载binary only版本了。不需要自己编译,很方便。

配置环境变量:sudo nano /etc/profile添加如下:

export PATH=$PATH:/opt/gradle/gradle-6.8.3/bin

检查是否安装好了:

source /etc/profile
gradle -v

一切如预期。ok了。

其他

在这里插入图片描述

https://gradle.org/install/#helpful-information

这个gradle-wrapper有点意思的,有时间可以详细了解下。

在eclipse中新建gradle项目

这个很简单,直接在eclipse中新建gradle项目就好,按照提示来,不过这一步要注意(如下图):

在这里插入图片描述

要选local installation directory,选择gradle的安装路径。不然会等很久,还会出现错误

org.gradle.tooling.GradleConnectionException: Could not install Gradle distribution from ‘https://services.gradle.org/distributions/gradle-6.8.3-bin.zip’.

其他的就没啥了。

小结

以上。

参考文献

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐