├── .gitignore ├── Appendix A. Gradle Samples 示例.md ├── Appendix B. Potential Traps 潜在的陷阱.md ├── Appendix C. The Feature Lifecycle 特性的生命周期.md ├── Appendix D. Gradle Command Line 命令行.md ├── Appendix E. Existing IDE Support and how to cope without it 支持的 IDE 以及如何应对没有它.md ├── Chapter 01. Introduction 介绍.md ├── Chapter 02. Overview 总览.md ├── Chapter 03. Tutorials 教程.md ├── Chapter 04. Installing Gradle 安装.md ├── Chapter 05. Troubleshooting 问题解决.md ├── Chapter 06. Build Script Basics 构建脚本的基础知识.md ├── Chapter 07. Java Quickstart 快速开始 Java.md ├── Chapter 08. Dependency Management Basics 依赖管理的基础知识.md ├── Chapter 09. Groovy Quickstart 快速开始 Groovy.md ├── Chapter 10. Web Application Quickstart 快速开始 Web 应用.md ├── Chapter 11. Using the Gradle Command-Line 使用 Gradle 命令行.md ├── Chapter 12. Using the Gradle Graphical User Interface 使用 Gradle 图形化用户界面.md ├── Chapter 13. Writing Build Scripts 编写构建脚本.md ├── Chapter 14. Tutorial - 'This and That' 教程-这个那个.md ├── Chapter 15. More about Tasks 更多关于任务.md ├── Chapter 16. Working With Files 跟文件工作.md ├── Chapter 17. Using Ant from Gradle 从 Gradle 使用 Ant.md ├── Chapter 18. Logging 日志.md ├── Chapter 19. The Gradle Daemon 守护进程.md ├── Chapter 20. The Build Environment 构建环境.md ├── Chapter 21. Gradle Plugins 插件.md ├── Chapter 22. Standard Gradle plugins 标准 Gradle 插件.md ├── Chapter 23. The Java Plugin 关于 Java 插件.md ├── Chapter 24. The Groovy Plugin 关于 Groovy 插件.md ├── Chapter 25. The Scala Plugin 关于 Scale 插件.md ├── Chapter 26. The War Plugin 关于 War 插件.md ├── Chapter 27. The Ear Plugin 关于 Ear 插件.md ├── Chapter 28. The Jetty Plugin 关于 Jetty 插件.md ├── Chapter 29. The Checkstyle Plugin 关于 Checkstyle 插件.md ├── Chapter 30. The CodeNarc Plugin 关于 CodeNarc 插件.md ├── Chapter 31. The FindBugs Plugin 关于 FindBugs 插件.md ├── Chapter 32. The JDepend Plugin 关于 JDepend 插件.md ├── Chapter 33. The PMD Plugin 关于 PMD 插件.md ├── Chapter 34. The JaCoCo Plugin 关于 JaCoCo 插件.md ├── Chapter 35. The Sonar Plugin 关于 Sonar 插件.md ├── Chapter 36. The Sonar Runner Plugin 关于 Sonar Runner 插件.md ├── Chapter 37. The OSGi Plugin 关于 OSGi 插件.md ├── Chapter 38. The Eclipse Plugin 关于 Eclipse 插件.md ├── Chapter 39. The IDEA Plugin 关于 IDEA 插件.md ├── Chapter 40. The ANTLR Plugin 关于 ANTLR 插件.md ├── Chapter 41. The Project Report Plugin 关于 Project Report 插件.md ├── Chapter 42. The Announce Plugin 关于 Announce 插件.md ├── Chapter 43. The Build Announcements Plugin 关于构建 Announcements 插件.md ├── Chapter 44. The Distribution Plugin 关于 Distribution 插件.md ├── Chapter 45. The Application Plugin 关于 Application 插件.md ├── Chapter 46. The Java Library Distribution Plugin 关于 Java Library Distribution插件.md ├── Chapter 47. Build Init Plugin 关于 Init 插件.md ├── Chapter 48. Wrapper Plugin 关于 Wrapper 插件.md ├── Chapter 49. The Build Dashboard Plugin 关于 构建 Dashboard 插件.md ├── Chapter 50. The Java Gradle Plugin Development Plugin 关于 Java Gradle Plugin 开发插件.md ├── Chapter 51. Dependency Management 依赖管理.md ├── Chapter 52. Publishing artifacts 发布 artifact.md ├── Chapter 53. The Maven Plugin 关于 Maven 插件.md ├── Chapter 54. The Signing Plugin 关于 Signing 插件.md ├── Chapter 55. Building native binaries 构建原生二进制.md ├── Chapter 56. The Build Lifecycle 构建生命周期.md ├── Chapter 57. Multi-project Builds 多项目构建.md ├── Chapter 58. Writing Custom Task Classes 编写自定义任务类.md ├── Chapter 59. Writing Custom Plugins 编写自定义插件.md ├── Chapter 60. Organizing Build Logic 组织构建逻辑.md ├── Chapter 61. Initialization Scripts 初始化脚本.md ├── Chapter 62. The Gradle Wrapper 关于 Gradle 包装器.md ├── Chapter 63. Embedding Gradle 嵌入 Gradle.md ├── Chapter 64. Comparing Builds 对比构建.md ├── Chapter 65. Ivy Publishing 发布 Ivy.md ├── Chapter 66. Maven Publishing 发布 Maven.md ├── README.md └── SUMMARY.md /.gitignore: -------------------------------------------------------------------------------- 1 | _book 2 | -------------------------------------------------------------------------------- /Appendix A. Gradle Samples 示例.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waylau/Gradle-2-User-Guide/HEAD/Appendix A. Gradle Samples 示例.md -------------------------------------------------------------------------------- /Appendix B. Potential Traps 潜在的陷阱.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waylau/Gradle-2-User-Guide/HEAD/Appendix B. Potential Traps 潜在的陷阱.md -------------------------------------------------------------------------------- /Appendix C. The Feature Lifecycle 特性的生命周期.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waylau/Gradle-2-User-Guide/HEAD/Appendix C. The Feature Lifecycle 特性的生命周期.md -------------------------------------------------------------------------------- /Appendix D. Gradle Command Line 命令行.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waylau/Gradle-2-User-Guide/HEAD/Appendix D. Gradle Command Line 命令行.md -------------------------------------------------------------------------------- /Appendix E. Existing IDE Support and how to cope without it 支持的 IDE 以及如何应对没有它.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waylau/Gradle-2-User-Guide/HEAD/Appendix E. Existing IDE Support and how to cope without it 支持的 IDE 以及如何应对没有它.md -------------------------------------------------------------------------------- /Chapter 01. Introduction 介绍.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waylau/Gradle-2-User-Guide/HEAD/Chapter 01. Introduction 介绍.md -------------------------------------------------------------------------------- /Chapter 02. Overview 总览.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waylau/Gradle-2-User-Guide/HEAD/Chapter 02. Overview 总览.md -------------------------------------------------------------------------------- /Chapter 03. Tutorials 教程.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waylau/Gradle-2-User-Guide/HEAD/Chapter 03. Tutorials 教程.md -------------------------------------------------------------------------------- /Chapter 04. Installing Gradle 安装.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waylau/Gradle-2-User-Guide/HEAD/Chapter 04. Installing Gradle 安装.md -------------------------------------------------------------------------------- /Chapter 05. Troubleshooting 问题解决.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waylau/Gradle-2-User-Guide/HEAD/Chapter 05. Troubleshooting 问题解决.md -------------------------------------------------------------------------------- /Chapter 06. Build Script Basics 构建脚本的基础知识.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waylau/Gradle-2-User-Guide/HEAD/Chapter 06. Build Script Basics 构建脚本的基础知识.md -------------------------------------------------------------------------------- /Chapter 07. Java Quickstart 快速开始 Java.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waylau/Gradle-2-User-Guide/HEAD/Chapter 07. Java Quickstart 快速开始 Java.md -------------------------------------------------------------------------------- /Chapter 08. Dependency Management Basics 依赖管理的基础知识.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waylau/Gradle-2-User-Guide/HEAD/Chapter 08. Dependency Management Basics 依赖管理的基础知识.md -------------------------------------------------------------------------------- /Chapter 09. Groovy Quickstart 快速开始 Groovy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waylau/Gradle-2-User-Guide/HEAD/Chapter 09. Groovy Quickstart 快速开始 Groovy.md -------------------------------------------------------------------------------- /Chapter 10. Web Application Quickstart 快速开始 Web 应用.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waylau/Gradle-2-User-Guide/HEAD/Chapter 10. Web Application Quickstart 快速开始 Web 应用.md -------------------------------------------------------------------------------- /Chapter 11. Using the Gradle Command-Line 使用 Gradle 命令行.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waylau/Gradle-2-User-Guide/HEAD/Chapter 11. Using the Gradle Command-Line 使用 Gradle 命令行.md -------------------------------------------------------------------------------- /Chapter 12. Using the Gradle Graphical User Interface 使用 Gradle 图形化用户界面.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waylau/Gradle-2-User-Guide/HEAD/Chapter 12. Using the Gradle Graphical User Interface 使用 Gradle 图形化用户界面.md -------------------------------------------------------------------------------- /Chapter 13. Writing Build Scripts 编写构建脚本.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waylau/Gradle-2-User-Guide/HEAD/Chapter 13. Writing Build Scripts 编写构建脚本.md -------------------------------------------------------------------------------- /Chapter 14. Tutorial - 'This and That' 教程-这个那个.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waylau/Gradle-2-User-Guide/HEAD/Chapter 14. Tutorial - 'This and That' 教程-这个那个.md -------------------------------------------------------------------------------- /Chapter 15. More about Tasks 更多关于任务.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waylau/Gradle-2-User-Guide/HEAD/Chapter 15. More about Tasks 更多关于任务.md -------------------------------------------------------------------------------- /Chapter 16. Working With Files 跟文件工作.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waylau/Gradle-2-User-Guide/HEAD/Chapter 16. Working With Files 跟文件工作.md -------------------------------------------------------------------------------- /Chapter 17. Using Ant from Gradle 从 Gradle 使用 Ant.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waylau/Gradle-2-User-Guide/HEAD/Chapter 17. Using Ant from Gradle 从 Gradle 使用 Ant.md -------------------------------------------------------------------------------- /Chapter 18. Logging 日志.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waylau/Gradle-2-User-Guide/HEAD/Chapter 18. Logging 日志.md -------------------------------------------------------------------------------- /Chapter 19. The Gradle Daemon 守护进程.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waylau/Gradle-2-User-Guide/HEAD/Chapter 19. The Gradle Daemon 守护进程.md -------------------------------------------------------------------------------- /Chapter 20. The Build Environment 构建环境.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waylau/Gradle-2-User-Guide/HEAD/Chapter 20. The Build Environment 构建环境.md -------------------------------------------------------------------------------- /Chapter 21. Gradle Plugins 插件.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waylau/Gradle-2-User-Guide/HEAD/Chapter 21. Gradle Plugins 插件.md -------------------------------------------------------------------------------- /Chapter 22. Standard Gradle plugins 标准 Gradle 插件.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waylau/Gradle-2-User-Guide/HEAD/Chapter 22. Standard Gradle plugins 标准 Gradle 插件.md -------------------------------------------------------------------------------- /Chapter 23. The Java Plugin 关于 Java 插件.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waylau/Gradle-2-User-Guide/HEAD/Chapter 23. The Java Plugin 关于 Java 插件.md -------------------------------------------------------------------------------- /Chapter 24. The Groovy Plugin 关于 Groovy 插件.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waylau/Gradle-2-User-Guide/HEAD/Chapter 24. The Groovy Plugin 关于 Groovy 插件.md -------------------------------------------------------------------------------- /Chapter 25. The Scala Plugin 关于 Scale 插件.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waylau/Gradle-2-User-Guide/HEAD/Chapter 25. The Scala Plugin 关于 Scale 插件.md -------------------------------------------------------------------------------- /Chapter 26. The War Plugin 关于 War 插件.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waylau/Gradle-2-User-Guide/HEAD/Chapter 26. The War Plugin 关于 War 插件.md -------------------------------------------------------------------------------- /Chapter 27. The Ear Plugin 关于 Ear 插件.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waylau/Gradle-2-User-Guide/HEAD/Chapter 27. The Ear Plugin 关于 Ear 插件.md -------------------------------------------------------------------------------- /Chapter 28. The Jetty Plugin 关于 Jetty 插件.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waylau/Gradle-2-User-Guide/HEAD/Chapter 28. The Jetty Plugin 关于 Jetty 插件.md -------------------------------------------------------------------------------- /Chapter 29. The Checkstyle Plugin 关于 Checkstyle 插件.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waylau/Gradle-2-User-Guide/HEAD/Chapter 29. The Checkstyle Plugin 关于 Checkstyle 插件.md -------------------------------------------------------------------------------- /Chapter 30. The CodeNarc Plugin 关于 CodeNarc 插件.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waylau/Gradle-2-User-Guide/HEAD/Chapter 30. The CodeNarc Plugin 关于 CodeNarc 插件.md -------------------------------------------------------------------------------- /Chapter 31. The FindBugs Plugin 关于 FindBugs 插件.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waylau/Gradle-2-User-Guide/HEAD/Chapter 31. The FindBugs Plugin 关于 FindBugs 插件.md -------------------------------------------------------------------------------- /Chapter 32. The JDepend Plugin 关于 JDepend 插件.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waylau/Gradle-2-User-Guide/HEAD/Chapter 32. The JDepend Plugin 关于 JDepend 插件.md -------------------------------------------------------------------------------- /Chapter 33. The PMD Plugin 关于 PMD 插件.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waylau/Gradle-2-User-Guide/HEAD/Chapter 33. The PMD Plugin 关于 PMD 插件.md -------------------------------------------------------------------------------- /Chapter 34. The JaCoCo Plugin 关于 JaCoCo 插件.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waylau/Gradle-2-User-Guide/HEAD/Chapter 34. The JaCoCo Plugin 关于 JaCoCo 插件.md -------------------------------------------------------------------------------- /Chapter 35. The Sonar Plugin 关于 Sonar 插件.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waylau/Gradle-2-User-Guide/HEAD/Chapter 35. The Sonar Plugin 关于 Sonar 插件.md -------------------------------------------------------------------------------- /Chapter 36. The Sonar Runner Plugin 关于 Sonar Runner 插件.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waylau/Gradle-2-User-Guide/HEAD/Chapter 36. The Sonar Runner Plugin 关于 Sonar Runner 插件.md -------------------------------------------------------------------------------- /Chapter 37. The OSGi Plugin 关于 OSGi 插件.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waylau/Gradle-2-User-Guide/HEAD/Chapter 37. The OSGi Plugin 关于 OSGi 插件.md -------------------------------------------------------------------------------- /Chapter 38. The Eclipse Plugin 关于 Eclipse 插件.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waylau/Gradle-2-User-Guide/HEAD/Chapter 38. The Eclipse Plugin 关于 Eclipse 插件.md -------------------------------------------------------------------------------- /Chapter 39. The IDEA Plugin 关于 IDEA 插件.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waylau/Gradle-2-User-Guide/HEAD/Chapter 39. The IDEA Plugin 关于 IDEA 插件.md -------------------------------------------------------------------------------- /Chapter 40. The ANTLR Plugin 关于 ANTLR 插件.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waylau/Gradle-2-User-Guide/HEAD/Chapter 40. The ANTLR Plugin 关于 ANTLR 插件.md -------------------------------------------------------------------------------- /Chapter 41. The Project Report Plugin 关于 Project Report 插件.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waylau/Gradle-2-User-Guide/HEAD/Chapter 41. The Project Report Plugin 关于 Project Report 插件.md -------------------------------------------------------------------------------- /Chapter 42. The Announce Plugin 关于 Announce 插件.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waylau/Gradle-2-User-Guide/HEAD/Chapter 42. The Announce Plugin 关于 Announce 插件.md -------------------------------------------------------------------------------- /Chapter 43. The Build Announcements Plugin 关于构建 Announcements 插件.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waylau/Gradle-2-User-Guide/HEAD/Chapter 43. The Build Announcements Plugin 关于构建 Announcements 插件.md -------------------------------------------------------------------------------- /Chapter 44. The Distribution Plugin 关于 Distribution 插件.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waylau/Gradle-2-User-Guide/HEAD/Chapter 44. The Distribution Plugin 关于 Distribution 插件.md -------------------------------------------------------------------------------- /Chapter 45. The Application Plugin 关于 Application 插件.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waylau/Gradle-2-User-Guide/HEAD/Chapter 45. The Application Plugin 关于 Application 插件.md -------------------------------------------------------------------------------- /Chapter 46. The Java Library Distribution Plugin 关于 Java Library Distribution插件.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waylau/Gradle-2-User-Guide/HEAD/Chapter 46. The Java Library Distribution Plugin 关于 Java Library Distribution插件.md -------------------------------------------------------------------------------- /Chapter 47. Build Init Plugin 关于 Init 插件.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waylau/Gradle-2-User-Guide/HEAD/Chapter 47. Build Init Plugin 关于 Init 插件.md -------------------------------------------------------------------------------- /Chapter 48. Wrapper Plugin 关于 Wrapper 插件.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waylau/Gradle-2-User-Guide/HEAD/Chapter 48. Wrapper Plugin 关于 Wrapper 插件.md -------------------------------------------------------------------------------- /Chapter 49. The Build Dashboard Plugin 关于 构建 Dashboard 插件.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waylau/Gradle-2-User-Guide/HEAD/Chapter 49. The Build Dashboard Plugin 关于 构建 Dashboard 插件.md -------------------------------------------------------------------------------- /Chapter 50. The Java Gradle Plugin Development Plugin 关于 Java Gradle Plugin 开发插件.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waylau/Gradle-2-User-Guide/HEAD/Chapter 50. The Java Gradle Plugin Development Plugin 关于 Java Gradle Plugin 开发插件.md -------------------------------------------------------------------------------- /Chapter 51. Dependency Management 依赖管理.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waylau/Gradle-2-User-Guide/HEAD/Chapter 51. Dependency Management 依赖管理.md -------------------------------------------------------------------------------- /Chapter 52. Publishing artifacts 发布 artifact.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waylau/Gradle-2-User-Guide/HEAD/Chapter 52. Publishing artifacts 发布 artifact.md -------------------------------------------------------------------------------- /Chapter 53. The Maven Plugin 关于 Maven 插件.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waylau/Gradle-2-User-Guide/HEAD/Chapter 53. The Maven Plugin 关于 Maven 插件.md -------------------------------------------------------------------------------- /Chapter 54. The Signing Plugin 关于 Signing 插件.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waylau/Gradle-2-User-Guide/HEAD/Chapter 54. The Signing Plugin 关于 Signing 插件.md -------------------------------------------------------------------------------- /Chapter 55. Building native binaries 构建原生二进制.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waylau/Gradle-2-User-Guide/HEAD/Chapter 55. Building native binaries 构建原生二进制.md -------------------------------------------------------------------------------- /Chapter 56. The Build Lifecycle 构建生命周期.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waylau/Gradle-2-User-Guide/HEAD/Chapter 56. The Build Lifecycle 构建生命周期.md -------------------------------------------------------------------------------- /Chapter 57. Multi-project Builds 多项目构建.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waylau/Gradle-2-User-Guide/HEAD/Chapter 57. Multi-project Builds 多项目构建.md -------------------------------------------------------------------------------- /Chapter 58. Writing Custom Task Classes 编写自定义任务类.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waylau/Gradle-2-User-Guide/HEAD/Chapter 58. Writing Custom Task Classes 编写自定义任务类.md -------------------------------------------------------------------------------- /Chapter 59. Writing Custom Plugins 编写自定义插件.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waylau/Gradle-2-User-Guide/HEAD/Chapter 59. Writing Custom Plugins 编写自定义插件.md -------------------------------------------------------------------------------- /Chapter 60. Organizing Build Logic 组织构建逻辑.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waylau/Gradle-2-User-Guide/HEAD/Chapter 60. Organizing Build Logic 组织构建逻辑.md -------------------------------------------------------------------------------- /Chapter 61. Initialization Scripts 初始化脚本.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waylau/Gradle-2-User-Guide/HEAD/Chapter 61. Initialization Scripts 初始化脚本.md -------------------------------------------------------------------------------- /Chapter 62. The Gradle Wrapper 关于 Gradle 包装器.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waylau/Gradle-2-User-Guide/HEAD/Chapter 62. The Gradle Wrapper 关于 Gradle 包装器.md -------------------------------------------------------------------------------- /Chapter 63. Embedding Gradle 嵌入 Gradle.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waylau/Gradle-2-User-Guide/HEAD/Chapter 63. Embedding Gradle 嵌入 Gradle.md -------------------------------------------------------------------------------- /Chapter 64. Comparing Builds 对比构建.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waylau/Gradle-2-User-Guide/HEAD/Chapter 64. Comparing Builds 对比构建.md -------------------------------------------------------------------------------- /Chapter 65. Ivy Publishing 发布 Ivy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waylau/Gradle-2-User-Guide/HEAD/Chapter 65. Ivy Publishing 发布 Ivy.md -------------------------------------------------------------------------------- /Chapter 66. Maven Publishing 发布 Maven.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waylau/Gradle-2-User-Guide/HEAD/Chapter 66. Maven Publishing 发布 Maven.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waylau/Gradle-2-User-Guide/HEAD/README.md -------------------------------------------------------------------------------- /SUMMARY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waylau/Gradle-2-User-Guide/HEAD/SUMMARY.md --------------------------------------------------------------------------------