Gradle-CheatSheet
Gradle CheatSheet
在
Configuration | 构建配置
artifacts
和
// jar类型的artifact
task myJar(type: Jar)
artifacts {
archives myJar
}
// file类型的artifact
def someFile = file('build/somefile.txt')
artifacts {
archives someFile
}
// 根据自定义task来完成artifact
task myTask(type: MyTaskType) {
destFile = file('build/somefile.txt')
}
artifacts {
archives(myTask.destFile) {
name 'my-artifact'
type 'text'
builtBy myTask
}
}
// 根据自定义task来完成artifact
task generate(type: MyTaskType) {
destFile = file('build/somefile.txt')
}
artifacts {
archives file: generate.destFile, name: 'my-artifact', type: 'text', builtBy: generate
}
publish | 发布
apply plugin: 'maven'
uploadArchives {
repositories {
ivy {
credentials {
username "username"
password "pw"
}
url "http://repo.mycompany.com"
}
}
}
Properties | 属性
在默认情况下,
gradle properties
输出如下:
:properties
------------------------------------------------------------
Root project
------------------------------------------------------------
allprojects: [root project 'gradle-blog']
ant: org.gradle.api.internal.project.DefaultAntBuilder@1342097
buildDir: /home/davenkin/Desktop/gradle-blog/build
buildFile: /home/davenkin/Desktop/gradle-blog/build.gradle
...
configurations: []
convention: org.gradle.api.internal.plugins.DefaultConvention@11492ed
copyFile: task ':copyFile'
...
ext: org.gradle.api.internal.plugins.DefaultExtraPropertiesExtension@1b5d53a
extensions: org.gradle.api.internal.plugins.DefaultConvention@11492ed
...
helloWorld: task ':helloWorld'
...
plugins: [org.gradle.api.plugins.HelpTasksPlugin@7359f7]
project: root project 'gradle-blog'
...
properties: {...}
repositories: []
tasks: [task ':copyFile', task ':helloWorld']
version: unspecified
BUILD SUCCESSFUL
Total time: 2.667 secs
Name | Type | Default Value |
---|---|---|
project |
Project |
The Project instance |
name |
String |
The name of the project directory. |
path |
String |
The absolute path of the project. |
description |
String |
A description for the project. |
projectDir |
File |
The directory containing the build script. |
buildDir |
File |
*projectDir*/build |
group |
Object |
unspecified |
version |
Object |
unspecified |
ant |
AntBuilder |
An AntBuilder instance |
Variables | 变量
Dependence | 依赖管理
$ gradle dependencies
Repository | 仓库配置
repositories {
mavenCentral() // 定义仓库为maven中心仓库
}
repositories {
jcenter() // 定义仓库为jcenter仓库
}
repositories {
maven {
url "http://repo.mycompany.com/maven2" // 定义依赖包协议是maven,地址是公司的仓库地址
}
}
repositories { // 定义本地仓库目录
flatDir {
dirs 'lib'
}
}
repositories { // 定义ivy协议类型的仓库
ivy {
url "http://repo.mycompany.com/repo"
}
}
repositories {
mavenCentral artifactUrls:["file://C:/maven/.m2/repository/"]
}
如果是系统的默认配置的:
repositories {
mavenLocal()
}
依赖声明
// Now we can set the dependencies by configuring the dependencies closure
// where compile is a configuration not a method that compiles the dependency or so
// It puts the dependency in the classpath of the Java Application
// <groupId>:<artifactId>:<version>
dependencies {
compile "org.apache.commons:commons-lang3:3.3.2"
}
// Or
dependencies {
compile group: "org.apache.commons", name: "commons-lang3", version: "3.3.2"
}
Task | 任务
检索
$ gradle tasks
输出如下:
:tasks
------------------------------------------------------------
All tasks runnable from root project
------------------------------------------------------------
Build Setup tasks
-----------------
setupBuild - Initializes a new Gradle build. [incubating]
wrapper - Generates Gradle wrapper files. [incubating]
Help tasks
----------
dependencies - Displays all dependencies declared in root project 'gradle-blog'.
dependencyInsight - Displays the insight into a specific dependency in root project 'gradle-blog'.
help - Displays a help message
projects - Displays the sub-projects of root project 'gradle-blog'.
properties - Displays the properties of root project 'gradle-blog'.
tasks - Displays the tasks runnable from root project 'gradle-blog'.
Other tasks
-----------
copyFile
helloWorld
To see all tasks and more detail, run with --all.
BUILD SUCCESSFUL
Total time: 2.845 secs
上面的
定义
// 简略定义
task helloWorld << {
println "Hello World!"
}
// 上述代码中使用了 `<<` 符号用来表征 `{}` 声明的动作是追加在某个任务的末尾,如果使用全声明即是
task printVersion {
// 任务的初始声明可以添加first和last动作
doFirst {
println "Before reading the project version"
}
doLast {
println "Version: $version"
}
}
这里的 <<
表示向<<
之外,我们还很多种方式可以定义一个
task(hello) << {
println "hello"
}
task(copy, type: Copy) {
from(file('srcDir'))
into(buildDir)
}
//也可以用字符串作为任务名
task('hello') <<
{
println "hello"
}
task('copy', type: Copy) {
from(file('srcDir'))
into(buildDir)
}
//Defining tasks with alternative syntax
tasks.create(name: 'hello') << {
println "hello"
}
tasks.create(name: 'copy', type: Copy) {
from(file('srcDir'))
into(buildDir)
}
Default tasks | 默认任务
gradle
命令:
defaultTasks 'clean', 'run'
task clean << {
println 'Default Cleaning!'
}
task run << {
println 'Default Running!'
}
task other << {
println "I'm not a default task!"
}
gradle -q
命令的输出:
> gradle -q
Default Cleaning!
Default Running!
Java Plugin
1,使用
apply plugin: 'java'
2,了解或设置

这里要注意,每个

图中每一块都是一个

可以看到,基本和
源码配置
// A Closure that configures the sourceSets Task
// Sets the main folder as Source folder (where the compiler is looking up the .java files)
sourceSets {
main.java.srcDir "src/main"
}
// This can also be written as a function -> srcDir is a method (Syntax sugar of the Groovy language)
souceSets {
main.java.srcDir("src/main")
}
// Or
sourceSets.main.java.srcDir "src/main"
// Or
sourceSets {
main {
java {
srcDir "src/main"
}
}
}
// Or setting the variable directly as a typical groovy enumerational style
sourceSets {
main.java.srcDirs = ["src/main"]
}
任务
# 执行编译,将 Java 源码编译到 build 目录并且打包到 jar 包中
$ gradle build
自定义
// Configure the jar task to insert the Main Class to the resulting MANIFEST.MF
jar {
manifest.attributes("Main-Class", "de.example.main.Application")
}
// Or without the parentheses
jar {
manifest.attributes "Main-Class": "de.example.main.Application"
}
jar {
from configurations.compile.collect {
entry -> zipTree(entry)
}
}
// Or with syntactic sugar
jar {
from configurations.compile.collect {
entry -> zipTree entry
}
}
// And with more syntactic sugar
// (where "it" is like "this" in gradle and "this" is the entry iterating over by the for loop)
jar {
from configurations.compile.collect {
zipTree it
}
}