博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Gradle学习笔记(二)--创建Java项目
阅读量:6432 次
发布时间:2019-06-23

本文共 1239 字,大约阅读时间需要 4 分钟。

hot3.png

一、新建Gradle Project,点下一步输入项目名

1、在Gradle distribution选择Local installation directory,填写Gradle Home路径

E:\gradle-2.11

2、在Advanced options里填写Gradle user home directory,这只存放gradle下载的jar包的路径,默认在C盘的User文件夹下

E:\gradle

3、点下一步,在点击finish就完成项目创建

二、build.gradle文件

apply plugin: 'java'// In this section you declare where to find the dependencies of your projectrepositories {    // Use 'jcenter' for resolving your dependencies.    // You can declare any Maven/Ivy/file repository here.    jcenter() //gradle默认的中央仓库    mavenCentral() //自己添加的Maven中央仓库}// In this section you declare the dependencies for your production and test codedependencies {    // The production code uses the SLF4J logging API at compile time    compile 'org.slf4j:slf4j-api:1.7.14'    compile 'com.google.code.gson:gson:2.6.2' //添加自己要用的jar包依赖        // Declare the dependency for your favourite test framework you want to use in your tests.    // TestNG is also supported by the Gradle Test task. Just change the    // testCompile dependency to testCompile 'org.testng:testng:6.8.1' and add    // 'test.useTestNG()' to your build script.    testCompile 'junit:junit:4.12'}

右键项目,选择Gradle--》Refresh Gradle Project将自动下载依赖

至此,就可以使用gson包了

转载于:https://my.oschina.net/yuewawa/blog/657974

你可能感兴趣的文章
CRUD全栈式编程架构之控制器的设计
查看>>
python常用内建模块(五)
查看>>
你为什么有那么多时间写博客?
查看>>
Excel 中使用VBA
查看>>
$.ajax同步请求会阻塞js进程
查看>>
Postman 网络调试工具
查看>>
Python教程6
查看>>
zabbix实现自动发现功能添加磁盘监控
查看>>
mysql8.0.14 安装
查看>>
1039. 到底买不买(20)
查看>>
android笔试题一
查看>>
【JavaEE企业应用实战学习记录】getConnListener
查看>>
了解轮询、长轮询、长连接、websocket
查看>>
bzoj2427[HAOI2010]软件安装
查看>>
WPF个人助手更新
查看>>
NLPIR技术助力中文智能数据挖掘
查看>>
python操作redis--------------数据库增删改查
查看>>
Android中仿IOS提示框的实现
查看>>
php初学第一课
查看>>
Windows下与Linux下编写socket程序的区别 《转载》
查看>>