├── .gitattributes ├── .gitignore ├── README.md ├── SUMMARY.md ├── TOC.md ├── about_this_user_guide.md ├── book.json ├── cover.jpg ├── cover_small.jpg ├── dependency_management_basics ├── README.md ├── a_basic_java_project.md ├── dependency_configurations.md ├── external_dependencies.md ├── publishing_artifacts.md ├── repositories.md ├── what_is_dependency_management.md └── where_to_next.md ├── earcha-jian.md ├── gradle_plugins ├── README.md ├── applying_plugins.md ├── applying_plugins_with_the_buildscript_block.md ├── applying_plugins_with_the_plugins_dsl.md ├── binary_plugins.md ├── can_only_be_used_in_build_scripts.md ├── cannot_be_used_in_conjunction.md ├── constrained_syntax.md ├── finding_community_plugins.md ├── limitations_of_the_plugins_dsl.md ├── locations_of_binary_plugins.md ├── more_on_plugins.md ├── script_plugins.md ├── types_of_plugins.md └── what_plugins_do.md ├── groovy_quickstart ├── README.md ├── a_basic_groovy_project.md └── summary.md ├── installing_gradle ├── README.md ├── download.md ├── environment_variables.md ├── jvm_options.md ├── prerequisites.md ├── running_and_testing_your_installation.md └── unpacking.md ├── introduction.md ├── java.md ├── java_quickstart ├── README.md ├── a_basic_java_project.md ├── building_the_project.md ├── common_configuration.md ├── creating_a_distribution.md ├── creating_an_eclipse_project.md ├── customizing_the_project.md ├── defining_a_multi-project_build.md ├── dependencies_between_projects.md ├── external_dependencies.md ├── multi-project_java_build.md ├── publishing_the_jar_file.md ├── summary.md └── the_java_plugin.md ├── logging ├── changing_what_gradle_logs.md ├── choosing_a_log_level.md ├── logging.md ├── logging_from_external_tools_and_libraries.md └── writing_your_own_log_messages.md ├── more_about_tasks ├── README.md ├── adding_a_description_to_a_task.md ├── adding_dependencies_to_a_task.md ├── cache.md ├── config_any_object.md ├── configuring_tasks.md ├── defining_tasks.md ├── extra.md ├── finalizer_tasks.md ├── gradle_properties_and_system_properties.md ├── locating_tasks.md ├── ordering_tasks.md ├── replacing_tasks.md ├── skipping_tasks.md ├── skipping_tasks_that_are_up-to-date.md ├── task_rules.md ├── use_other_script_to_config_any_object.md └── use_other_script_to_config_project.md ├── npm-debug.log ├── overview ├── README.md ├── features.md └── why_groovy.md ├── standard_gradle_plugins ├── README.md ├── base_plugins.md ├── incubating_integration_plugins.md ├── incubating_language_plugins.md ├── incubating_software_development_plugins.md ├── integration_plugins.md ├── language_plugins.md ├── software_development_plugins.md └── third_party_plugins.md ├── the_gradle_daemon ├── README.md ├── how_can_i_stop_a_daemon.md ├── how_do_i_disable_the_gradle_daemon.md ├── how_do_i_enable_the_gradle_daemon.md ├── how_do_i_suppress_the_please_consider_using_the_gradle_daemon_message.md ├── how_does_the_gradle_daemon_make_builds_faster.md ├── how_much_memory_does_the_daemon_use_and_can_i_give_it_more.md ├── management_and_configuration.md ├── potential_future_enhancements.md ├── tools_&_ides.md ├── what_can_go_wrong_with_daemon.md ├── what_is_the_gradle_daemon.md ├── when_should_i_not_use_the_gradle_daemon.md └── why_is_there_more_than_one_daemon_process_on_my_machine.md ├── the_java_plugin ├── README.md ├── java_plugin_clean.md ├── java_plugin_compile_java.md ├── java_plugin_compilejava.md ├── java_plugin_convention_properties.md ├── java_plugin_defining_new_source_sets.md ├── java_plugin_dependency_management.md ├── java_plugin_incremental_java_compilation.md ├── java_plugin_jar.md ├── java_plugin_javadoc.md ├── java_plugin_manifest.md ├── java_plugin_project_layout.md ├── java_plugin_resources.md ├── java_plugin_source_set_properties.md ├── java_plugin_source_sets.md ├── java_plugin_tasks.md ├── java_plugin_test.md ├── java_plugin_uploading.md ├── java_plugin_usage.md ├── java_plugin_working_with_source_sets.md ├── java_plugins_some_source_set_examples.md ├── test_convention_values.md ├── test_debugging.md ├── test_detection.md ├── test_execution.md ├── test_filtering.md ├── test_grouping.md ├── test_reporting.md ├── test_single_test_execution_via_system_properties.md └── test_testNG_parameterized_methods_and_reporting.md ├── the_war_plugin ├── convention_properties.md ├── customizing.md ├── dependency_management.md ├── project_layout.md ├── tasks.md ├── the_war_plugin.md ├── usage.md └── war.md ├── troubleshooting ├── README.md ├── getting_help.md └── working_through_problems.md ├── tutorial_-_this_and_that └── caching.md ├── tutorials ├── README.md └── getting_started.md ├── using_ant_from_gradle ├── API.md ├── ant_properties_and_references.md ├── importing_an_ant_build.md ├── using_ant_from_gradle.md ├── using_ant_tasks_and_types_in_your_build.md └── using_custom_ant_tasks_in_your_build.md ├── using_the_gradle_command-line ├── README.md ├── continuing_the_build_when_a_failure_occurs.md ├── excluding_tasks.md ├── executing_multiple_tasks.md ├── getting_the_insight_into_a_particular_dependency.md ├── listing_project_dependencies.md ├── listing_project_properties.md ├── listing_projects.md ├── listing_tasks.md ├── listing_taskss.md ├── profiling_a_build.md ├── selecting_which_build_to_execute.md ├── show_task_usage_details.md └── task_name_abbreviation.md ├── using_the_gradle_graphical_user_interface ├── README.md ├── command_line.md ├── favorities.md ├── setup.md └── task_tree.md ├── web_application_quickstart ├── README.md ├── building_a_war_file.md ├── running_your_web_application.md └── summary.md ├── working_with_files ├── README.md ├── copying_files.md ├── creating_archives.md ├── file_collections.md ├── file_trees.md ├── java.md ├── locating_files.md ├── specifying_a_set_of_input_files.md ├── using_a_file_collection.md ├── using_the_contents_of_an_archive_as_a_file_tree.md └── using_the_sync_task.md └── writing_build_scripts ├── README.md ├── closure_delegate.md ├── closures_as_the_last_parameter_in_a_method.md ├── declaring_variables.md ├── extra_properties.md ├── groovy_jdk.md ├── list_and_map_literals.md ├── local_variables.md ├── optional_parentheses_on_method_calls.md ├── property_accessors.md ├── some_groovy_basics.md ├── standard_project_properties.md ├── the_gradle_build_language.md ├── the_project_api.md └── the_script_api.md /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DONGChuan/GradleUserGuide/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DONGChuan/GradleUserGuide/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DONGChuan/GradleUserGuide/HEAD/README.md -------------------------------------------------------------------------------- /SUMMARY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DONGChuan/GradleUserGuide/HEAD/SUMMARY.md -------------------------------------------------------------------------------- /TOC.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DONGChuan/GradleUserGuide/HEAD/TOC.md -------------------------------------------------------------------------------- /about_this_user_guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DONGChuan/GradleUserGuide/HEAD/about_this_user_guide.md -------------------------------------------------------------------------------- /book.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DONGChuan/GradleUserGuide/HEAD/book.json -------------------------------------------------------------------------------- /cover.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DONGChuan/GradleUserGuide/HEAD/cover.jpg -------------------------------------------------------------------------------- /cover_small.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DONGChuan/GradleUserGuide/HEAD/cover_small.jpg -------------------------------------------------------------------------------- /dependency_management_basics/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DONGChuan/GradleUserGuide/HEAD/dependency_management_basics/README.md -------------------------------------------------------------------------------- /dependency_management_basics/a_basic_java_project.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DONGChuan/GradleUserGuide/HEAD/dependency_management_basics/a_basic_java_project.md -------------------------------------------------------------------------------- /dependency_management_basics/dependency_configurations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DONGChuan/GradleUserGuide/HEAD/dependency_management_basics/dependency_configurations.md -------------------------------------------------------------------------------- /dependency_management_basics/external_dependencies.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DONGChuan/GradleUserGuide/HEAD/dependency_management_basics/external_dependencies.md -------------------------------------------------------------------------------- /dependency_management_basics/publishing_artifacts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DONGChuan/GradleUserGuide/HEAD/dependency_management_basics/publishing_artifacts.md -------------------------------------------------------------------------------- /dependency_management_basics/repositories.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DONGChuan/GradleUserGuide/HEAD/dependency_management_basics/repositories.md -------------------------------------------------------------------------------- /dependency_management_basics/what_is_dependency_management.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DONGChuan/GradleUserGuide/HEAD/dependency_management_basics/what_is_dependency_management.md -------------------------------------------------------------------------------- /dependency_management_basics/where_to_next.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DONGChuan/GradleUserGuide/HEAD/dependency_management_basics/where_to_next.md -------------------------------------------------------------------------------- /earcha-jian.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DONGChuan/GradleUserGuide/HEAD/earcha-jian.md -------------------------------------------------------------------------------- /gradle_plugins/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DONGChuan/GradleUserGuide/HEAD/gradle_plugins/README.md -------------------------------------------------------------------------------- /gradle_plugins/applying_plugins.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DONGChuan/GradleUserGuide/HEAD/gradle_plugins/applying_plugins.md -------------------------------------------------------------------------------- /gradle_plugins/applying_plugins_with_the_buildscript_block.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DONGChuan/GradleUserGuide/HEAD/gradle_plugins/applying_plugins_with_the_buildscript_block.md -------------------------------------------------------------------------------- /gradle_plugins/applying_plugins_with_the_plugins_dsl.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DONGChuan/GradleUserGuide/HEAD/gradle_plugins/applying_plugins_with_the_plugins_dsl.md -------------------------------------------------------------------------------- /gradle_plugins/binary_plugins.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DONGChuan/GradleUserGuide/HEAD/gradle_plugins/binary_plugins.md -------------------------------------------------------------------------------- /gradle_plugins/can_only_be_used_in_build_scripts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DONGChuan/GradleUserGuide/HEAD/gradle_plugins/can_only_be_used_in_build_scripts.md -------------------------------------------------------------------------------- /gradle_plugins/cannot_be_used_in_conjunction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DONGChuan/GradleUserGuide/HEAD/gradle_plugins/cannot_be_used_in_conjunction.md -------------------------------------------------------------------------------- /gradle_plugins/constrained_syntax.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DONGChuan/GradleUserGuide/HEAD/gradle_plugins/constrained_syntax.md -------------------------------------------------------------------------------- /gradle_plugins/finding_community_plugins.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DONGChuan/GradleUserGuide/HEAD/gradle_plugins/finding_community_plugins.md -------------------------------------------------------------------------------- /gradle_plugins/limitations_of_the_plugins_dsl.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DONGChuan/GradleUserGuide/HEAD/gradle_plugins/limitations_of_the_plugins_dsl.md -------------------------------------------------------------------------------- /gradle_plugins/locations_of_binary_plugins.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DONGChuan/GradleUserGuide/HEAD/gradle_plugins/locations_of_binary_plugins.md -------------------------------------------------------------------------------- /gradle_plugins/more_on_plugins.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DONGChuan/GradleUserGuide/HEAD/gradle_plugins/more_on_plugins.md -------------------------------------------------------------------------------- /gradle_plugins/script_plugins.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DONGChuan/GradleUserGuide/HEAD/gradle_plugins/script_plugins.md -------------------------------------------------------------------------------- /gradle_plugins/types_of_plugins.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DONGChuan/GradleUserGuide/HEAD/gradle_plugins/types_of_plugins.md -------------------------------------------------------------------------------- /gradle_plugins/what_plugins_do.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DONGChuan/GradleUserGuide/HEAD/gradle_plugins/what_plugins_do.md -------------------------------------------------------------------------------- /groovy_quickstart/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DONGChuan/GradleUserGuide/HEAD/groovy_quickstart/README.md -------------------------------------------------------------------------------- /groovy_quickstart/a_basic_groovy_project.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DONGChuan/GradleUserGuide/HEAD/groovy_quickstart/a_basic_groovy_project.md -------------------------------------------------------------------------------- /groovy_quickstart/summary.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DONGChuan/GradleUserGuide/HEAD/groovy_quickstart/summary.md -------------------------------------------------------------------------------- /installing_gradle/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DONGChuan/GradleUserGuide/HEAD/installing_gradle/README.md -------------------------------------------------------------------------------- /installing_gradle/download.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DONGChuan/GradleUserGuide/HEAD/installing_gradle/download.md -------------------------------------------------------------------------------- /installing_gradle/environment_variables.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DONGChuan/GradleUserGuide/HEAD/installing_gradle/environment_variables.md -------------------------------------------------------------------------------- /installing_gradle/jvm_options.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DONGChuan/GradleUserGuide/HEAD/installing_gradle/jvm_options.md -------------------------------------------------------------------------------- /installing_gradle/prerequisites.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DONGChuan/GradleUserGuide/HEAD/installing_gradle/prerequisites.md -------------------------------------------------------------------------------- /installing_gradle/running_and_testing_your_installation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DONGChuan/GradleUserGuide/HEAD/installing_gradle/running_and_testing_your_installation.md -------------------------------------------------------------------------------- /installing_gradle/unpacking.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DONGChuan/GradleUserGuide/HEAD/installing_gradle/unpacking.md -------------------------------------------------------------------------------- /introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DONGChuan/GradleUserGuide/HEAD/introduction.md -------------------------------------------------------------------------------- /java.md: -------------------------------------------------------------------------------- 1 | # Java插件 2 | -------------------------------------------------------------------------------- /java_quickstart/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DONGChuan/GradleUserGuide/HEAD/java_quickstart/README.md -------------------------------------------------------------------------------- /java_quickstart/a_basic_java_project.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DONGChuan/GradleUserGuide/HEAD/java_quickstart/a_basic_java_project.md -------------------------------------------------------------------------------- /java_quickstart/building_the_project.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DONGChuan/GradleUserGuide/HEAD/java_quickstart/building_the_project.md -------------------------------------------------------------------------------- /java_quickstart/common_configuration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DONGChuan/GradleUserGuide/HEAD/java_quickstart/common_configuration.md -------------------------------------------------------------------------------- /java_quickstart/creating_a_distribution.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DONGChuan/GradleUserGuide/HEAD/java_quickstart/creating_a_distribution.md -------------------------------------------------------------------------------- /java_quickstart/creating_an_eclipse_project.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DONGChuan/GradleUserGuide/HEAD/java_quickstart/creating_an_eclipse_project.md -------------------------------------------------------------------------------- /java_quickstart/customizing_the_project.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DONGChuan/GradleUserGuide/HEAD/java_quickstart/customizing_the_project.md -------------------------------------------------------------------------------- /java_quickstart/defining_a_multi-project_build.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DONGChuan/GradleUserGuide/HEAD/java_quickstart/defining_a_multi-project_build.md -------------------------------------------------------------------------------- /java_quickstart/dependencies_between_projects.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DONGChuan/GradleUserGuide/HEAD/java_quickstart/dependencies_between_projects.md -------------------------------------------------------------------------------- /java_quickstart/external_dependencies.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DONGChuan/GradleUserGuide/HEAD/java_quickstart/external_dependencies.md -------------------------------------------------------------------------------- /java_quickstart/multi-project_java_build.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DONGChuan/GradleUserGuide/HEAD/java_quickstart/multi-project_java_build.md -------------------------------------------------------------------------------- /java_quickstart/publishing_the_jar_file.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DONGChuan/GradleUserGuide/HEAD/java_quickstart/publishing_the_jar_file.md -------------------------------------------------------------------------------- /java_quickstart/summary.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DONGChuan/GradleUserGuide/HEAD/java_quickstart/summary.md -------------------------------------------------------------------------------- /java_quickstart/the_java_plugin.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DONGChuan/GradleUserGuide/HEAD/java_quickstart/the_java_plugin.md -------------------------------------------------------------------------------- /logging/changing_what_gradle_logs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DONGChuan/GradleUserGuide/HEAD/logging/changing_what_gradle_logs.md -------------------------------------------------------------------------------- /logging/choosing_a_log_level.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DONGChuan/GradleUserGuide/HEAD/logging/choosing_a_log_level.md -------------------------------------------------------------------------------- /logging/logging.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DONGChuan/GradleUserGuide/HEAD/logging/logging.md -------------------------------------------------------------------------------- /logging/logging_from_external_tools_and_libraries.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DONGChuan/GradleUserGuide/HEAD/logging/logging_from_external_tools_and_libraries.md -------------------------------------------------------------------------------- /logging/writing_your_own_log_messages.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DONGChuan/GradleUserGuide/HEAD/logging/writing_your_own_log_messages.md -------------------------------------------------------------------------------- /more_about_tasks/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DONGChuan/GradleUserGuide/HEAD/more_about_tasks/README.md -------------------------------------------------------------------------------- /more_about_tasks/adding_a_description_to_a_task.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DONGChuan/GradleUserGuide/HEAD/more_about_tasks/adding_a_description_to_a_task.md -------------------------------------------------------------------------------- /more_about_tasks/adding_dependencies_to_a_task.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DONGChuan/GradleUserGuide/HEAD/more_about_tasks/adding_dependencies_to_a_task.md -------------------------------------------------------------------------------- /more_about_tasks/cache.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DONGChuan/GradleUserGuide/HEAD/more_about_tasks/cache.md -------------------------------------------------------------------------------- /more_about_tasks/config_any_object.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DONGChuan/GradleUserGuide/HEAD/more_about_tasks/config_any_object.md -------------------------------------------------------------------------------- /more_about_tasks/configuring_tasks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DONGChuan/GradleUserGuide/HEAD/more_about_tasks/configuring_tasks.md -------------------------------------------------------------------------------- /more_about_tasks/defining_tasks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DONGChuan/GradleUserGuide/HEAD/more_about_tasks/defining_tasks.md -------------------------------------------------------------------------------- /more_about_tasks/extra.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DONGChuan/GradleUserGuide/HEAD/more_about_tasks/extra.md -------------------------------------------------------------------------------- /more_about_tasks/finalizer_tasks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DONGChuan/GradleUserGuide/HEAD/more_about_tasks/finalizer_tasks.md -------------------------------------------------------------------------------- /more_about_tasks/gradle_properties_and_system_properties.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DONGChuan/GradleUserGuide/HEAD/more_about_tasks/gradle_properties_and_system_properties.md -------------------------------------------------------------------------------- /more_about_tasks/locating_tasks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DONGChuan/GradleUserGuide/HEAD/more_about_tasks/locating_tasks.md -------------------------------------------------------------------------------- /more_about_tasks/ordering_tasks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DONGChuan/GradleUserGuide/HEAD/more_about_tasks/ordering_tasks.md -------------------------------------------------------------------------------- /more_about_tasks/replacing_tasks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DONGChuan/GradleUserGuide/HEAD/more_about_tasks/replacing_tasks.md -------------------------------------------------------------------------------- /more_about_tasks/skipping_tasks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DONGChuan/GradleUserGuide/HEAD/more_about_tasks/skipping_tasks.md -------------------------------------------------------------------------------- /more_about_tasks/skipping_tasks_that_are_up-to-date.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DONGChuan/GradleUserGuide/HEAD/more_about_tasks/skipping_tasks_that_are_up-to-date.md -------------------------------------------------------------------------------- /more_about_tasks/task_rules.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DONGChuan/GradleUserGuide/HEAD/more_about_tasks/task_rules.md -------------------------------------------------------------------------------- /more_about_tasks/use_other_script_to_config_any_object.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DONGChuan/GradleUserGuide/HEAD/more_about_tasks/use_other_script_to_config_any_object.md -------------------------------------------------------------------------------- /more_about_tasks/use_other_script_to_config_project.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DONGChuan/GradleUserGuide/HEAD/more_about_tasks/use_other_script_to_config_project.md -------------------------------------------------------------------------------- /npm-debug.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DONGChuan/GradleUserGuide/HEAD/npm-debug.log -------------------------------------------------------------------------------- /overview/README.md: -------------------------------------------------------------------------------- 1 | # 概述 2 | 3 | * 特点 4 | * 为什么用 Groovy? 5 | 6 | -------------------------------------------------------------------------------- /overview/features.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DONGChuan/GradleUserGuide/HEAD/overview/features.md -------------------------------------------------------------------------------- /overview/why_groovy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DONGChuan/GradleUserGuide/HEAD/overview/why_groovy.md -------------------------------------------------------------------------------- /standard_gradle_plugins/README.md: -------------------------------------------------------------------------------- 1 | # Standard Gradle plugins 2 | 3 | 许多包括在Gradle分布的插件。这些在下面列出。 4 | -------------------------------------------------------------------------------- /standard_gradle_plugins/base_plugins.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DONGChuan/GradleUserGuide/HEAD/standard_gradle_plugins/base_plugins.md -------------------------------------------------------------------------------- /standard_gradle_plugins/incubating_integration_plugins.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DONGChuan/GradleUserGuide/HEAD/standard_gradle_plugins/incubating_integration_plugins.md -------------------------------------------------------------------------------- /standard_gradle_plugins/incubating_language_plugins.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DONGChuan/GradleUserGuide/HEAD/standard_gradle_plugins/incubating_language_plugins.md -------------------------------------------------------------------------------- /standard_gradle_plugins/incubating_software_development_plugins.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DONGChuan/GradleUserGuide/HEAD/standard_gradle_plugins/incubating_software_development_plugins.md -------------------------------------------------------------------------------- /standard_gradle_plugins/integration_plugins.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DONGChuan/GradleUserGuide/HEAD/standard_gradle_plugins/integration_plugins.md -------------------------------------------------------------------------------- /standard_gradle_plugins/language_plugins.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DONGChuan/GradleUserGuide/HEAD/standard_gradle_plugins/language_plugins.md -------------------------------------------------------------------------------- /standard_gradle_plugins/software_development_plugins.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DONGChuan/GradleUserGuide/HEAD/standard_gradle_plugins/software_development_plugins.md -------------------------------------------------------------------------------- /standard_gradle_plugins/third_party_plugins.md: -------------------------------------------------------------------------------- 1 | # 第三方插件 2 | 3 | 你可以在[Gradle Plugins site]()找到外部插件. 4 | -------------------------------------------------------------------------------- /the_gradle_daemon/README.md: -------------------------------------------------------------------------------- 1 | # The Gradle Daemon 2 | 3 | -------------------------------------------------------------------------------- /the_gradle_daemon/how_can_i_stop_a_daemon.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DONGChuan/GradleUserGuide/HEAD/the_gradle_daemon/how_can_i_stop_a_daemon.md -------------------------------------------------------------------------------- /the_gradle_daemon/how_do_i_disable_the_gradle_daemon.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DONGChuan/GradleUserGuide/HEAD/the_gradle_daemon/how_do_i_disable_the_gradle_daemon.md -------------------------------------------------------------------------------- /the_gradle_daemon/how_do_i_enable_the_gradle_daemon.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DONGChuan/GradleUserGuide/HEAD/the_gradle_daemon/how_do_i_enable_the_gradle_daemon.md -------------------------------------------------------------------------------- /the_gradle_daemon/how_do_i_suppress_the_please_consider_using_the_gradle_daemon_message.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DONGChuan/GradleUserGuide/HEAD/the_gradle_daemon/how_do_i_suppress_the_please_consider_using_the_gradle_daemon_message.md -------------------------------------------------------------------------------- /the_gradle_daemon/how_does_the_gradle_daemon_make_builds_faster.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DONGChuan/GradleUserGuide/HEAD/the_gradle_daemon/how_does_the_gradle_daemon_make_builds_faster.md -------------------------------------------------------------------------------- /the_gradle_daemon/how_much_memory_does_the_daemon_use_and_can_i_give_it_more.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DONGChuan/GradleUserGuide/HEAD/the_gradle_daemon/how_much_memory_does_the_daemon_use_and_can_i_give_it_more.md -------------------------------------------------------------------------------- /the_gradle_daemon/management_and_configuration.md: -------------------------------------------------------------------------------- 1 | # 管理和配置 2 | -------------------------------------------------------------------------------- /the_gradle_daemon/potential_future_enhancements.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DONGChuan/GradleUserGuide/HEAD/the_gradle_daemon/potential_future_enhancements.md -------------------------------------------------------------------------------- /the_gradle_daemon/tools_&_ides.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DONGChuan/GradleUserGuide/HEAD/the_gradle_daemon/tools_&_ides.md -------------------------------------------------------------------------------- /the_gradle_daemon/what_can_go_wrong_with_daemon.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DONGChuan/GradleUserGuide/HEAD/the_gradle_daemon/what_can_go_wrong_with_daemon.md -------------------------------------------------------------------------------- /the_gradle_daemon/what_is_the_gradle_daemon.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DONGChuan/GradleUserGuide/HEAD/the_gradle_daemon/what_is_the_gradle_daemon.md -------------------------------------------------------------------------------- /the_gradle_daemon/when_should_i_not_use_the_gradle_daemon.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DONGChuan/GradleUserGuide/HEAD/the_gradle_daemon/when_should_i_not_use_the_gradle_daemon.md -------------------------------------------------------------------------------- /the_gradle_daemon/why_is_there_more_than_one_daemon_process_on_my_machine.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DONGChuan/GradleUserGuide/HEAD/the_gradle_daemon/why_is_there_more_than_one_daemon_process_on_my_machine.md -------------------------------------------------------------------------------- /the_java_plugin/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DONGChuan/GradleUserGuide/HEAD/the_java_plugin/README.md -------------------------------------------------------------------------------- /the_java_plugin/java_plugin_clean.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DONGChuan/GradleUserGuide/HEAD/the_java_plugin/java_plugin_clean.md -------------------------------------------------------------------------------- /the_java_plugin/java_plugin_compile_java.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DONGChuan/GradleUserGuide/HEAD/the_java_plugin/java_plugin_compile_java.md -------------------------------------------------------------------------------- /the_java_plugin/java_plugin_compilejava.md: -------------------------------------------------------------------------------- 1 | # Java Plugin CompileJava 2 | -------------------------------------------------------------------------------- /the_java_plugin/java_plugin_convention_properties.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DONGChuan/GradleUserGuide/HEAD/the_java_plugin/java_plugin_convention_properties.md -------------------------------------------------------------------------------- /the_java_plugin/java_plugin_defining_new_source_sets.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DONGChuan/GradleUserGuide/HEAD/the_java_plugin/java_plugin_defining_new_source_sets.md -------------------------------------------------------------------------------- /the_java_plugin/java_plugin_dependency_management.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DONGChuan/GradleUserGuide/HEAD/the_java_plugin/java_plugin_dependency_management.md -------------------------------------------------------------------------------- /the_java_plugin/java_plugin_incremental_java_compilation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DONGChuan/GradleUserGuide/HEAD/the_java_plugin/java_plugin_incremental_java_compilation.md -------------------------------------------------------------------------------- /the_java_plugin/java_plugin_jar.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DONGChuan/GradleUserGuide/HEAD/the_java_plugin/java_plugin_jar.md -------------------------------------------------------------------------------- /the_java_plugin/java_plugin_javadoc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DONGChuan/GradleUserGuide/HEAD/the_java_plugin/java_plugin_javadoc.md -------------------------------------------------------------------------------- /the_java_plugin/java_plugin_manifest.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DONGChuan/GradleUserGuide/HEAD/the_java_plugin/java_plugin_manifest.md -------------------------------------------------------------------------------- /the_java_plugin/java_plugin_project_layout.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DONGChuan/GradleUserGuide/HEAD/the_java_plugin/java_plugin_project_layout.md -------------------------------------------------------------------------------- /the_java_plugin/java_plugin_resources.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DONGChuan/GradleUserGuide/HEAD/the_java_plugin/java_plugin_resources.md -------------------------------------------------------------------------------- /the_java_plugin/java_plugin_source_set_properties.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DONGChuan/GradleUserGuide/HEAD/the_java_plugin/java_plugin_source_set_properties.md -------------------------------------------------------------------------------- /the_java_plugin/java_plugin_source_sets.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DONGChuan/GradleUserGuide/HEAD/the_java_plugin/java_plugin_source_sets.md -------------------------------------------------------------------------------- /the_java_plugin/java_plugin_tasks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DONGChuan/GradleUserGuide/HEAD/the_java_plugin/java_plugin_tasks.md -------------------------------------------------------------------------------- /the_java_plugin/java_plugin_test.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DONGChuan/GradleUserGuide/HEAD/the_java_plugin/java_plugin_test.md -------------------------------------------------------------------------------- /the_java_plugin/java_plugin_uploading.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DONGChuan/GradleUserGuide/HEAD/the_java_plugin/java_plugin_uploading.md -------------------------------------------------------------------------------- /the_java_plugin/java_plugin_usage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DONGChuan/GradleUserGuide/HEAD/the_java_plugin/java_plugin_usage.md -------------------------------------------------------------------------------- /the_java_plugin/java_plugin_working_with_source_sets.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DONGChuan/GradleUserGuide/HEAD/the_java_plugin/java_plugin_working_with_source_sets.md -------------------------------------------------------------------------------- /the_java_plugin/java_plugins_some_source_set_examples.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DONGChuan/GradleUserGuide/HEAD/the_java_plugin/java_plugins_some_source_set_examples.md -------------------------------------------------------------------------------- /the_java_plugin/test_convention_values.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DONGChuan/GradleUserGuide/HEAD/the_java_plugin/test_convention_values.md -------------------------------------------------------------------------------- /the_java_plugin/test_debugging.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DONGChuan/GradleUserGuide/HEAD/the_java_plugin/test_debugging.md -------------------------------------------------------------------------------- /the_java_plugin/test_detection.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DONGChuan/GradleUserGuide/HEAD/the_java_plugin/test_detection.md -------------------------------------------------------------------------------- /the_java_plugin/test_execution.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DONGChuan/GradleUserGuide/HEAD/the_java_plugin/test_execution.md -------------------------------------------------------------------------------- /the_java_plugin/test_filtering.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DONGChuan/GradleUserGuide/HEAD/the_java_plugin/test_filtering.md -------------------------------------------------------------------------------- /the_java_plugin/test_grouping.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DONGChuan/GradleUserGuide/HEAD/the_java_plugin/test_grouping.md -------------------------------------------------------------------------------- /the_java_plugin/test_reporting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DONGChuan/GradleUserGuide/HEAD/the_java_plugin/test_reporting.md -------------------------------------------------------------------------------- /the_java_plugin/test_single_test_execution_via_system_properties.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DONGChuan/GradleUserGuide/HEAD/the_java_plugin/test_single_test_execution_via_system_properties.md -------------------------------------------------------------------------------- /the_java_plugin/test_testNG_parameterized_methods_and_reporting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DONGChuan/GradleUserGuide/HEAD/the_java_plugin/test_testNG_parameterized_methods_and_reporting.md -------------------------------------------------------------------------------- /the_war_plugin/convention_properties.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DONGChuan/GradleUserGuide/HEAD/the_war_plugin/convention_properties.md -------------------------------------------------------------------------------- /the_war_plugin/customizing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DONGChuan/GradleUserGuide/HEAD/the_war_plugin/customizing.md -------------------------------------------------------------------------------- /the_war_plugin/dependency_management.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DONGChuan/GradleUserGuide/HEAD/the_war_plugin/dependency_management.md -------------------------------------------------------------------------------- /the_war_plugin/project_layout.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DONGChuan/GradleUserGuide/HEAD/the_war_plugin/project_layout.md -------------------------------------------------------------------------------- /the_war_plugin/tasks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DONGChuan/GradleUserGuide/HEAD/the_war_plugin/tasks.md -------------------------------------------------------------------------------- /the_war_plugin/the_war_plugin.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DONGChuan/GradleUserGuide/HEAD/the_war_plugin/the_war_plugin.md -------------------------------------------------------------------------------- /the_war_plugin/usage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DONGChuan/GradleUserGuide/HEAD/the_war_plugin/usage.md -------------------------------------------------------------------------------- /the_war_plugin/war.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DONGChuan/GradleUserGuide/HEAD/the_war_plugin/war.md -------------------------------------------------------------------------------- /troubleshooting/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DONGChuan/GradleUserGuide/HEAD/troubleshooting/README.md -------------------------------------------------------------------------------- /troubleshooting/getting_help.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DONGChuan/GradleUserGuide/HEAD/troubleshooting/getting_help.md -------------------------------------------------------------------------------- /troubleshooting/working_through_problems.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DONGChuan/GradleUserGuide/HEAD/troubleshooting/working_through_problems.md -------------------------------------------------------------------------------- /tutorial_-_this_and_that/caching.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DONGChuan/GradleUserGuide/HEAD/tutorial_-_this_and_that/caching.md -------------------------------------------------------------------------------- /tutorials/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DONGChuan/GradleUserGuide/HEAD/tutorials/README.md -------------------------------------------------------------------------------- /tutorials/getting_started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DONGChuan/GradleUserGuide/HEAD/tutorials/getting_started.md -------------------------------------------------------------------------------- /using_ant_from_gradle/API.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DONGChuan/GradleUserGuide/HEAD/using_ant_from_gradle/API.md -------------------------------------------------------------------------------- /using_ant_from_gradle/ant_properties_and_references.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DONGChuan/GradleUserGuide/HEAD/using_ant_from_gradle/ant_properties_and_references.md -------------------------------------------------------------------------------- /using_ant_from_gradle/importing_an_ant_build.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DONGChuan/GradleUserGuide/HEAD/using_ant_from_gradle/importing_an_ant_build.md -------------------------------------------------------------------------------- /using_ant_from_gradle/using_ant_from_gradle.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DONGChuan/GradleUserGuide/HEAD/using_ant_from_gradle/using_ant_from_gradle.md -------------------------------------------------------------------------------- /using_ant_from_gradle/using_ant_tasks_and_types_in_your_build.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DONGChuan/GradleUserGuide/HEAD/using_ant_from_gradle/using_ant_tasks_and_types_in_your_build.md -------------------------------------------------------------------------------- /using_ant_from_gradle/using_custom_ant_tasks_in_your_build.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DONGChuan/GradleUserGuide/HEAD/using_ant_from_gradle/using_custom_ant_tasks_in_your_build.md -------------------------------------------------------------------------------- /using_the_gradle_command-line/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DONGChuan/GradleUserGuide/HEAD/using_the_gradle_command-line/README.md -------------------------------------------------------------------------------- /using_the_gradle_command-line/continuing_the_build_when_a_failure_occurs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DONGChuan/GradleUserGuide/HEAD/using_the_gradle_command-line/continuing_the_build_when_a_failure_occurs.md -------------------------------------------------------------------------------- /using_the_gradle_command-line/excluding_tasks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DONGChuan/GradleUserGuide/HEAD/using_the_gradle_command-line/excluding_tasks.md -------------------------------------------------------------------------------- /using_the_gradle_command-line/executing_multiple_tasks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DONGChuan/GradleUserGuide/HEAD/using_the_gradle_command-line/executing_multiple_tasks.md -------------------------------------------------------------------------------- /using_the_gradle_command-line/getting_the_insight_into_a_particular_dependency.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DONGChuan/GradleUserGuide/HEAD/using_the_gradle_command-line/getting_the_insight_into_a_particular_dependency.md -------------------------------------------------------------------------------- /using_the_gradle_command-line/listing_project_dependencies.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DONGChuan/GradleUserGuide/HEAD/using_the_gradle_command-line/listing_project_dependencies.md -------------------------------------------------------------------------------- /using_the_gradle_command-line/listing_project_properties.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DONGChuan/GradleUserGuide/HEAD/using_the_gradle_command-line/listing_project_properties.md -------------------------------------------------------------------------------- /using_the_gradle_command-line/listing_projects.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DONGChuan/GradleUserGuide/HEAD/using_the_gradle_command-line/listing_projects.md -------------------------------------------------------------------------------- /using_the_gradle_command-line/listing_tasks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DONGChuan/GradleUserGuide/HEAD/using_the_gradle_command-line/listing_tasks.md -------------------------------------------------------------------------------- /using_the_gradle_command-line/listing_taskss.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DONGChuan/GradleUserGuide/HEAD/using_the_gradle_command-line/listing_taskss.md -------------------------------------------------------------------------------- /using_the_gradle_command-line/profiling_a_build.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DONGChuan/GradleUserGuide/HEAD/using_the_gradle_command-line/profiling_a_build.md -------------------------------------------------------------------------------- /using_the_gradle_command-line/selecting_which_build_to_execute.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DONGChuan/GradleUserGuide/HEAD/using_the_gradle_command-line/selecting_which_build_to_execute.md -------------------------------------------------------------------------------- /using_the_gradle_command-line/show_task_usage_details.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DONGChuan/GradleUserGuide/HEAD/using_the_gradle_command-line/show_task_usage_details.md -------------------------------------------------------------------------------- /using_the_gradle_command-line/task_name_abbreviation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DONGChuan/GradleUserGuide/HEAD/using_the_gradle_command-line/task_name_abbreviation.md -------------------------------------------------------------------------------- /using_the_gradle_graphical_user_interface/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DONGChuan/GradleUserGuide/HEAD/using_the_gradle_graphical_user_interface/README.md -------------------------------------------------------------------------------- /using_the_gradle_graphical_user_interface/command_line.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DONGChuan/GradleUserGuide/HEAD/using_the_gradle_graphical_user_interface/command_line.md -------------------------------------------------------------------------------- /using_the_gradle_graphical_user_interface/favorities.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DONGChuan/GradleUserGuide/HEAD/using_the_gradle_graphical_user_interface/favorities.md -------------------------------------------------------------------------------- /using_the_gradle_graphical_user_interface/setup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DONGChuan/GradleUserGuide/HEAD/using_the_gradle_graphical_user_interface/setup.md -------------------------------------------------------------------------------- /using_the_gradle_graphical_user_interface/task_tree.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DONGChuan/GradleUserGuide/HEAD/using_the_gradle_graphical_user_interface/task_tree.md -------------------------------------------------------------------------------- /web_application_quickstart/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DONGChuan/GradleUserGuide/HEAD/web_application_quickstart/README.md -------------------------------------------------------------------------------- /web_application_quickstart/building_a_war_file.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DONGChuan/GradleUserGuide/HEAD/web_application_quickstart/building_a_war_file.md -------------------------------------------------------------------------------- /web_application_quickstart/running_your_web_application.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DONGChuan/GradleUserGuide/HEAD/web_application_quickstart/running_your_web_application.md -------------------------------------------------------------------------------- /web_application_quickstart/summary.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DONGChuan/GradleUserGuide/HEAD/web_application_quickstart/summary.md -------------------------------------------------------------------------------- /working_with_files/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DONGChuan/GradleUserGuide/HEAD/working_with_files/README.md -------------------------------------------------------------------------------- /working_with_files/copying_files.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DONGChuan/GradleUserGuide/HEAD/working_with_files/copying_files.md -------------------------------------------------------------------------------- /working_with_files/creating_archives.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DONGChuan/GradleUserGuide/HEAD/working_with_files/creating_archives.md -------------------------------------------------------------------------------- /working_with_files/file_collections.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DONGChuan/GradleUserGuide/HEAD/working_with_files/file_collections.md -------------------------------------------------------------------------------- /working_with_files/file_trees.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DONGChuan/GradleUserGuide/HEAD/working_with_files/file_trees.md -------------------------------------------------------------------------------- /working_with_files/java.md: -------------------------------------------------------------------------------- 1 | # Java插件 2 | -------------------------------------------------------------------------------- /working_with_files/locating_files.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DONGChuan/GradleUserGuide/HEAD/working_with_files/locating_files.md -------------------------------------------------------------------------------- /working_with_files/specifying_a_set_of_input_files.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DONGChuan/GradleUserGuide/HEAD/working_with_files/specifying_a_set_of_input_files.md -------------------------------------------------------------------------------- /working_with_files/using_a_file_collection.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DONGChuan/GradleUserGuide/HEAD/working_with_files/using_a_file_collection.md -------------------------------------------------------------------------------- /working_with_files/using_the_contents_of_an_archive_as_a_file_tree.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DONGChuan/GradleUserGuide/HEAD/working_with_files/using_the_contents_of_an_archive_as_a_file_tree.md -------------------------------------------------------------------------------- /working_with_files/using_the_sync_task.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DONGChuan/GradleUserGuide/HEAD/working_with_files/using_the_sync_task.md -------------------------------------------------------------------------------- /writing_build_scripts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DONGChuan/GradleUserGuide/HEAD/writing_build_scripts/README.md -------------------------------------------------------------------------------- /writing_build_scripts/closure_delegate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DONGChuan/GradleUserGuide/HEAD/writing_build_scripts/closure_delegate.md -------------------------------------------------------------------------------- /writing_build_scripts/closures_as_the_last_parameter_in_a_method.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DONGChuan/GradleUserGuide/HEAD/writing_build_scripts/closures_as_the_last_parameter_in_a_method.md -------------------------------------------------------------------------------- /writing_build_scripts/declaring_variables.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DONGChuan/GradleUserGuide/HEAD/writing_build_scripts/declaring_variables.md -------------------------------------------------------------------------------- /writing_build_scripts/extra_properties.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DONGChuan/GradleUserGuide/HEAD/writing_build_scripts/extra_properties.md -------------------------------------------------------------------------------- /writing_build_scripts/groovy_jdk.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DONGChuan/GradleUserGuide/HEAD/writing_build_scripts/groovy_jdk.md -------------------------------------------------------------------------------- /writing_build_scripts/list_and_map_literals.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DONGChuan/GradleUserGuide/HEAD/writing_build_scripts/list_and_map_literals.md -------------------------------------------------------------------------------- /writing_build_scripts/local_variables.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DONGChuan/GradleUserGuide/HEAD/writing_build_scripts/local_variables.md -------------------------------------------------------------------------------- /writing_build_scripts/optional_parentheses_on_method_calls.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DONGChuan/GradleUserGuide/HEAD/writing_build_scripts/optional_parentheses_on_method_calls.md -------------------------------------------------------------------------------- /writing_build_scripts/property_accessors.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DONGChuan/GradleUserGuide/HEAD/writing_build_scripts/property_accessors.md -------------------------------------------------------------------------------- /writing_build_scripts/some_groovy_basics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DONGChuan/GradleUserGuide/HEAD/writing_build_scripts/some_groovy_basics.md -------------------------------------------------------------------------------- /writing_build_scripts/standard_project_properties.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DONGChuan/GradleUserGuide/HEAD/writing_build_scripts/standard_project_properties.md -------------------------------------------------------------------------------- /writing_build_scripts/the_gradle_build_language.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DONGChuan/GradleUserGuide/HEAD/writing_build_scripts/the_gradle_build_language.md -------------------------------------------------------------------------------- /writing_build_scripts/the_project_api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DONGChuan/GradleUserGuide/HEAD/writing_build_scripts/the_project_api.md -------------------------------------------------------------------------------- /writing_build_scripts/the_script_api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DONGChuan/GradleUserGuide/HEAD/writing_build_scripts/the_script_api.md --------------------------------------------------------------------------------