Gradle User Guide Version 4.3.1 Copyright © 2007-2017 Hans Dockter, Adam Murdoch Copies of this document may be made for your own use and for distribution to others, provided that you do not charge any fee for such copies and further provided that each copy contains this Copyright Notice, whether distributed in print or electronically. Table of Contents I. ABOUT GRADLE 1. Introduction 2. Overview II. WORKING WITH EXISTING BUILDS 3. Installing Gradle 4. Using the Gradle Command-Line 5. The Gradle Console 6. The Gradle Wrapper 7. The Gradle Daemon 8. Dependency Management Basics 9. Introduction to multi-project builds 10. Continuous build 11. Composite builds 12. The Build Environment 13. Troubleshooting 14. Embedding Gradle using the Tooling API 15. Build Cache III. WRITING GRADLE BUILD SCRIPTS 16. Build Script Basics 17. Build Init Plugin 18. Writing Build Scripts 19. More about Tasks 20. Working With Files 21. Using Ant from Gradle 22. The Build Lifecycle 23. Wrapper Plugin 24. Logging 25. Dependency Management 26. Multi-project Builds 27. Gradle Plugins 28. Standard Gradle plugins 29. The Project Report Plugin 30. The Build Dashboard Plugin 31. Comparing Builds 32. Publishing artifacts 33. The Maven Plugin 34. The Signing Plugin 35. Ivy Publishing (new) 36. Maven Publishing (new) 37. The Distribution Plugin 38. The Announce Plugin 39. The Build Announcements Plugin IV. EXTENDING THE BUILD 40. Writing Custom Task Classes 41. Writing Custom Plugins 42. The Java Gradle Plugin Development Plugin 43. Organizing Build Logic 44. Initialization Scripts 45. The Gradle TestKit V. BUILDING JVM PROJECTS 46. Java Quickstart 47. The Java Plugin 48. The Java Library Plugin 49. Web Application Quickstart 50. The War Plugin 51. The Ear Plugin 52. The Jetty Plugin 53. The Application Plugin 54. The Java Library Distribution Plugin 55. Groovy Quickstart 56. The Groovy Plugin 57. The Scala Plugin 58. The ANTLR Plugin 59. The Checkstyle Plugin 60. The CodeNarc Plugin 61. The FindBugs Plugin 62. The JDepend Plugin 63. The PMD Plugin 64. The JaCoCo Plugin 65. The OSGi Plugin 66. The Eclipse Plugins 67. The IDEA Plugin VI. THE SOFTWARE MODEL 68. Rule based model configuration 69. Software model concepts 70. Implementing model rules in a plugin 71. Building Java Libraries 72. Building Play applications 73. Building native software 74. Extending the software model VII. APPENDIX A. Gradle Samples B. Potential Traps C. The Feature Lifecycle D. Gradle Command Line E. Documentation licenses List of Examples 4.1. Executing multiple tasks 4.2. Excluding tasks 4.3. Abbreviated task name 4.4. Abbreviated camel case task name 4.5. Selecting the project using a build file 4.6. Selecting the project using project directory 4.7. Forcing tasks to run 4.8. Obtaining information about projects 4.9. Providing a description for a project 4.10. Obtaining information about tasks 4.11. Changing the content of the task report 4.12. Obtaining more information about tasks 4.13. Obtaining detailed help for tasks 4.14. Obtaining information about dependencies 4.15. Filtering dependency report by configuration 4.16. Getting the insight into a particular dependency 4.17. Information about properties 6.1. Running the Wrapper task 6.2. Wrapper task 6.3. Wrapper generated files 6.4. Specifying the HTTP Basic Authentication credentials using system properties 6.5. Specifying the HTTP Basic Authentication credentials in distributionUrl 6.6. Configuring SHA-256 checksum verification 8.1. Declaring dependencies 8.2. Definition of an external dependency 8.3. Shortcut definition of an external dependency 8.4. Usage of Maven central repository 8.5. Usage of JCenter repository 8.6. Usage of a remote Maven repository 8.7. Usage of a remote Ivy directory 8.8. Usage of a local Ivy directory 8.9. Publishing to an Ivy repository 8.10. Publishing to a Maven repository 9.1. Listing the projects in a build 11.1. Dependencies of my-app 11.2. Declaring a command-line composite 11.3. Declaring a separate composite 11.4. Depending on task from included build 11.5. Build that does not declare group attribute 11.6. Declaring the substitutions for an included build 11.7. Depending on a single task from an included build 11.8. Depending on a tasks with path in all included builds 12.1. Setting properties with a gradle.properties file 12.2. Configuring an HTTP proxy 12.3. Configuring an HTTPS proxy 14.1. Using the tooling API 15.1. Pull from HttpBuildCache 15.2. Allow untrusted SSL certificate for HttpBuildCache 15.3. Recommended setup for CI push use case 15.4. Consistent setup for buildSrc and main build 15.5. Configure built-in build caches 15.6. Init script to configure the build cache 16.1. Your first build script 16.2. Execution of a build script 16.3. A task definition shortcut 16.4. Using Groovy in Gradle's tasks 16.5. Using Groovy in Gradle's tasks 16.6. Declaration of task that depends on other task 16.7. Lazy dependsOn - the other task does not exist (yet) 16.8. Dynamic creation of a task 16.9. Accessing a task via API - adding a dependency 16.10. Accessing a task via API - adding behaviour 16.11. Accessing task as a property of the build script 16.12. Adding extra properties to a task 16.13. Using AntBuilder to execute ant.loadfile target 16.14. Using methods to organize your build logic 16.15. Defining a default task 16.16. Different outcomes of build depending on chosen tasks 18.1. Accessing property of the Project object 18.2. Using local variables 18.3. Using extra properties 18.4. Configuring arbitrary objects 18.5. Configuring arbitrary objects using a script 18.6. Groovy JDK methods 18.7. Property accessors 18.8. Method call without parentheses 18.9. List and map literals 18.10. Closure as method parameter 18.11. Closure delegates 19.1. Defining tasks 19.2. Defining tasks - using strings for task names 19.3. Defining tasks with alternative syntax 19.4. Accessing tasks as properties 19.5. Accessing tasks via tasks collection 19.6. Accessing tasks by path 19.7. Creating a copy task 19.8. Configuring a task - various ways 19.9. Configuring a task - with closure 19.10. Defining a task with closure 19.11. Adding dependency on task from another project 19.12. Adding dependency using task object 19.13. Adding dependency using closure 19.14. Adding a 'must run after' task ordering 19.15. Adding a 'should run after' task ordering 19.16. Task ordering does not imply task execution 19.17. A 'should run after' task ordering is ignored if it introduces an ordering cycle 19.18. Adding a description to a task 19.19. Overwriting a task 19.20. Skipping a task using a predicate 19.21. Skipping tasks with StopExecutionException 19.22. Enabling and disabling tasks 19.23. Custom task class 19.24. Ad-hoc task 19.25. Ad-hoc task declaring a destroyable 19.26. Using runtime API with custom task type 19.27. Using skipWhenEmpty() via the runtime API 19.28. Inferred task dependency via task outputs 19.29. Inferred task dependency via a task argument 19.30. Declaring a method to add task inputs 19.31. Declaring a method to add a task as an input 19.32. Failed attempt at setting up an inferred task dependency 19.33. Setting up an inferred task dependency between output dir and input files 19.34. Setting up an inferred task dependency with files() 19.35. Setting up an inferred task dependency with builtBy() 19.36. Ignoring up-to-date checks 19.37. Runtime classpath normalization 19.38. Task rule 19.39. Dependency on rule based tasks 19.40. Adding a task finalizer 19.41. Task finalizer for a failing task 20.1. Locating files 20.2. Creating a file collection 20.3. Using a file collection 20.4. Implementing a file collection 20.5. Creating a file tree 20.6. Using a file tree 20.7. Using an archive as a file tree 20.8. Specifying a set of files 20.9. Copying files using the copy task 20.10. Specifying copy task source files and destination directory 20.11. Selecting the files to copy 20.12. Copying files using the copy() method without up-to-date check 20.13. Copying files using the copy() method with up-to-date check 20.14. Renaming files as they are copied 20.15. Filtering files as they are copied 20.16. Nested copy specs 20.17. Using the Sync task to copy dependencies 20.18. Creating a ZIP archive 20.19. Creation of ZIP archive 20.20. Configuration of archive task - custom archive name 20.21. Configuration of archive task - appendix & classifier 20.22. Activating reproducible archives 21.1. Using an Ant task 21.2. Passing nested text to an Ant task 21.3. Passing nested elements to an Ant task 21.4. Using an Ant type 21.5. Using a custom Ant task 21.6. Declaring the classpath for a custom Ant task 21.7. Using a custom Ant task and dependency management together 21.8. Importing an Ant build 21.9. Task that depends on Ant target 21.10. Adding behaviour to an Ant target 21.11. Ant target that depends on Gradle task 21.12. Renaming imported Ant targets 21.13. Setting an Ant property 21.14. Getting an Ant property 21.15. Setting an Ant reference 21.16. Getting an Ant reference 21.17. Fine tuning Ant logging 22.1. Single project build 22.2. Hierarchical layout 22.3.
Details
-
File Typepdf
-
Upload Time-
-
Content LanguagesEnglish
-
Upload UserAnonymous/Not logged-in
-
File Pages654 Page
-
File Size-