当前位置:网站首页>Installing gradle
Installing gradle
2022-07-07 23:36:00 【Rain fish in summer】
install gradle
1、 Download binary package decompression
2、 Configure environment variables


3、 verification , The following is a success

4、 To configure Gradle Warehouse source
stay Gradle Install under directory init.d Under the folder , Create a new one init.gradle file , Fill in the following configuration
allprojects {
repositories {
maven {
url 'file:///E:/005java/001maven/repository'}
mavenLocal()
maven {
name "Alibaba" ; url "https://maven.aliyun.com/repository/public" }
maven {
name "Bstek" ; url "http://nexus.bsdn.org/content/groups/public/" }
mavenCentral()
}
buildscript {
repositories {
maven {
name "Alibaba" ; url 'https://maven.aliyun.com/repository/public' }
maven {
name "Bstek" ; url 'http://nexus.bsdn.org/content/groups/public/' }
maven {
name "M2" ; url 'https://plugins.gradle.org/m2/' }
}
}
}
5、idea To configure

边栏推荐
- 伸展树(一) - 图文解析与C语言实现
- Open source hardware small project: anxinco esp-c3f control ws2812
- 违法行为分析1
- Puce à tension stabilisée LDO - schéma de bloc interne et paramètres de sélection du modèle
- Unity3d learning notes 4 - create mesh advanced interface
- MySQL Index Optimization Practice II
- SAP memory parameter tuning process
- 谷歌浏览器怎么登录及开启同步功能
- PCB wiring rules of PCI Express interface
- Summary of common methods of object class (September 14, 2020)
猜你喜欢
随机推荐
违法行为分析1
Solution of intelligent supply chain collaboration platform in electronic equipment industry: solve inefficiency and enable digital upgrading of industry
SQL database execution problems
How to login and enable synchronization function in Google browser
Windows set redis to start automatically
SAP memory parameter tuning process
Spark 离线开发框架设计与实现
Extended tree (I) - graphic analysis and C language implementation
Unity3d learning notes 4 - create mesh advanced interface
LDO voltage stabilizing chip - internal block diagram and selection parameters
IDEA 2021.3. X cracking
B_QuRT_User_Guide(36)
C cat and dog
HDU 4747 Mex「建议收藏」
移动端异构运算技术 - GPU OpenCL 编程(基础篇)
Live server usage
Happy gathering time
Anxin can internally test offline voice module vb-01 to communicate with esp-c3-12f
Anxinco EC series modules are connected to the multi protocol access products of onenet Internet of things open platform
SAP HR reward and punishment information export








