w3cschool 编程狮,随时随地学编程
下载APP
|
登录
个人中心
首页
入门教程
编程课程
特色实战
畅学全站
Gradle 2 用户指南
开始阅读
下载APP,阅读更畅快
教程目录:
关于
第1章 Introduction 介绍
第2章 Overview 总览
第3章 Tutorials 教程
第4章 Installing Gradle 安装
第5章 Troubleshooting 问题解决
第6章 Build Script Basics 构建脚本的基础识
第7章 Java Quickstart 快速开始 Java
第8章 Dependency Management Basics 依赖管理的基础知识
第9章 Groovy Quickstart 快速开始 Groovy
第10章 Web Application Quickstart 快速开始 Web 应用
第11章 Using the Gradle Command-Line 使用 Gradle 命令行
第12章 Using the Gradle Graphical User Interface 使用 Gradle 图形化用户界面
第13章 Writing Build Scripts 编写构建脚本
第14章 Tutorial - 'This and That' 教程-这个那个
第15章 More about Tasks 更多关于任务
第16章 Working With Files 跟文件工作
第17章 Using Ant from Gradle 从 Gradle 使用 Ant
第18章 Logging 日志.md
第19章 The Gradle Daemon 守护进程
第20章 The Build Environment 构建环境
第21章 Gradle Plugins 插件
第22章 Standard Gradle plugins 标准 Gradle 插件
附录E Existing IDE Support and how to cope without it 支持的 IDE 以及如何应对没有它
温馨提示
下载编程狮App,免费阅读超1000+编程语言教程
取消
确定
目录
关于
第1章 Introduction 介绍
第2章 Overview 总览
第3章 Tutorials 教程
第4章 Installing Gradle 安装
第5章 Troubleshooting 问题解决
第6章 Build Script Basics 构建脚本的基础识
第7章 Java Quickstart 快速开始 Java
第8章 Dependency Management Basics 依赖管理的基础知识
第9章 Groovy Quickstart 快速开始 Groovy
第10章 Web Application Quickstart 快速开始 Web 应用
第11章 Using the Gradle Command-Line 使用 Gradle 命令行
第12章 Using the Gradle Graphical User Interface 使用 Gradle 图形化用户界面
第13章 Writing Build Scripts 编写构建脚本
第14章 Tutorial - 'This and That' 教程-这个那个
第15章 More about Tasks 更多关于任务
第16章 Working With Files 跟文件工作
第17章 Using Ant from Gradle 从 Gradle 使用 Ant
第18章 Logging 日志.md
第19章 The Gradle Daemon 守护进程
第20章 The Build Environment 构建环境
第21章 Gradle Plugins 插件
第22章 Standard Gradle plugins 标准 Gradle 插件
附录E Existing IDE Support and how to cope without it 支持的 IDE 以及如何应对没有它
关闭
MIP.setData({ 'pageTheme' : getCookie('pageTheme') || {'day':true, 'night':false}, 'pageFontSize' : getCookie('pageFontSize') || 20 }); MIP.watch('pageTheme', function(newValue){ setCookie('pageTheme', JSON.stringify(newValue)) }); MIP.watch('pageFontSize', function(newValue){ setCookie('pageFontSize', newValue) }); function setCookie(name, value){ var days = 1; var exp = new Date(); exp.setTime(exp.getTime() + days*24*60*60*1000); document.cookie = name + '=' + value + ';expires=' + exp.toUTCString(); } function getCookie(name){ var reg = new RegExp('(^| )' + name + '=([^;]*)(;|$)'); return document.cookie.match(reg) ? JSON.parse(document.cookie.match(reg)[2]) : null; }