码迷,mamicode.com
首页 > 编程语言 > 详细

Gradle java使用

时间:2019-12-18 00:06:43      阅读:82      评论:0      收藏:0      [点我收藏+]

标签:技术   inf   jce   frame   onclick   classpath   unit   image   nbsp   

安装

去gradle官网下载然后解压,把bin路径添加到PATH变量即可

 

查看版本号

gradle -v

  

  

 

生成gradle项目

在新建/已有项目目录下初始化项目

gradle init

  

配置仓库源

编辑 当前项目目录/gradle/build.grade
repositories

jcenter()的上面添加镜像源地址如

maven {url "https://maven.aliyun.com/nexus/content/groups/public/" }

  



技术图片

 

 

 

Java项目里使用Gradle导入JSoup第三方库的例子

技术图片
 1 /*
 2  * This file was generated by the Gradle ‘init‘ task.
 3  *
 4  * This generated file contains a sample Java Library project to get you started.
 5  * For more details take a look at the Java Libraries chapter in the Gradle
 6  * User Manual available at https://docs.gradle.org/6.0.1/userguide/java_library_plugin.html
 7  */
 8 
 9 plugins {
10     // Apply the java-library plugin to add support for Java Library
11     id java-library
12 }
13 
14 repositories {
15     // Use jcenter for resolving dependencies.
16     // You can declare any Maven/Ivy/file repository here.
17     maven {url "https://maven.aliyun.com/nexus/content/groups/public/" }
18 
19     jcenter()
20 }
21 
22 dependencies {
23     // This dependency is exported to consumers, that is to say found on their compile classpath.
24     api org.apache.commons:commons-math3:3.6.1
25     // jsoup HTML parser library @ https://jsoup.org/
26     compile org.jsoup:jsoup:1.12.1
27     // This dependency is used internally, and not exposed to consumers on their own compile classpath.
28     implementation com.google.guava:guava:28.0-jre
29 
30     // Use JUnit test framework
31     testImplementation junit:junit:4.12
32 }
View Code

 

 

不得不说,Gradle比Maven先进多了

Gradle java使用

标签:技术   inf   jce   frame   onclick   classpath   unit   image   nbsp   

原文地址:https://www.cnblogs.com/yucloud/p/12057584.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!