Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

reviewed list of gradle books - proposal for books.md #111

Open
wants to merge 3 commits into
base: main
Choose a base branch
from
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
68 changes: 68 additions & 0 deletions docs/resources/books.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,68 @@
---
title: Gradle Books
template: books.html
books:
- title: Gradle Recipes for Android
subtitle: Master the New Build System for Android
cta_link: https://gradle.com/recipes-for-android/
cta_text: Free Download
description: Android adopted Gradle as the preferred build automation system a few years ago, but many Android developers are still unfamiliar with this open source tool. This hands-on guide provides a collection of Gradle recipes to help you quickly and easily accomplish the most common build tasks for your Android apps. You'll learn how to customize project layouts, add dependencies, and generate many different versions of your app.

- title: Gradle in Action
cta_link: http://manning.com/muschko
cta_text: Purchase from Manning
description: Gradle in Action_ is a comprehensive guide to end-to-end project automation with Gradle. Starting with the basics, this practical, easy-to-read book discusses how to build a full-fledged, real-world project. Along the way, it touches on advanced topics like testing, continuous integration, and monitoring code quality. You'll also explore tasks like setting up your target environment and deploying your software.

- title: Idiomatic Gradle
subtitle: 25 recipes for plugin authors
cta_link: https://leanpub.com/idiomaticgradle
cta_text: Purchase from LeanPub
description: Write Gradle plugins in a form that extends the Gradle DSL in a readable and gradlesque way. Make it easy for consumers of the plugins to adopt it in their build scripts. These recipes provide a common ground for users as well as maintainers of a plugin.

- title: Gradle Effective Implementations Guide (2<sup>nd</sup> Ed.)
subtitle: A comprehensive guide to get up and running with build automation using Gradle
cta_link: https://www.packtpub.com/web-development/gradle-effective-implementations-guide-second-edition
cta_text: Purchase from Packt
description: Gradle is a project automation tool that has a wide range of applications. The basic aim of Gradle is to automate a wide variety of tasks performed by software developers, including compiling computer source code to binary code, packaging binary codes, running tests, deploying applications to production systems, and creating documentation.
The book will start with the fundamentals of Gradle and introduce you to the tools that will be used in further chapters. You will learn to create and work with Gradle scripts and then see how to use Gradle to build your Java Projects. While building Java application, you will find out about other important topics such as dependency management, publishing artifacts, and integrating the application with other JVM languages such as Scala and Groovy.
By the end of this book, you will be able to use Gradle in your daily development. Writing tasks, applying plugins, and creating build logic will be your second nature.

- title: Gradle Essentials
subtitle: Master the fundamentals of Gradle using real-world projects with this quick and easy-to-read guide
cta_link: https://www.packtpub.com/web-development/gradle-essentials
cta_text: Purchase from Packt
description: Gradle is an advanced and modern build automation tool. It inherits the best elements of the past generation of build tools, but it also differs and innovates to bring terseness, elegance, simplicity, and the flexibility to build.
Right from installing Gradle and writing your first build file to creating a fully-fledged multi-module project build, this book will guide you through its topics in a step-by-step fashion.
You will get your hands dirty with a simple Java project built with Gradle and go on to build web applications that are run with Jetty or Tomcat. We take a unique approach towards explaining the DSL using the Gradle API, which makes the DSL more accessible and intuitive.
All in all, this book is a concise guide to help you decipher the Gradle build files, covering the essential topics that are most useful in real-world projects. With every chapter, you will learn a new topic and be able to readily implement your build files.

- title: Gradle for Android
subtitle: Automate the build process for your Android projects with Gradle
cta_link: https://www.packtpub.com/application-development/gradle-android
cta_text: Purchase from Packt
description: Gradle is an open source build automation system that introduces a Groovy-based domain-specific language (DSL) to configure projects. Using Gradle makes it easy for Android developers to manage dependencies and set up the entire build process.
This book begins by taking you through the basics of Gradle and how it works with Android Studio. Furthermore, you will learn how to add local and remote dependencies to your project. You will work with build variants, such as debug and release, paid and free, and even combinations of these things. The book will also help you set up unit and integration testing with different libraries and will show how Gradle and Android Studio can make running tests easier. Finally, you will be shown a number of tips and tricks on the advanced customization of your application's build process. By the end of this book, you will be able to customize the entire build process, and create your own tasks and plugins for your Gradle builds.

- title: Mastering Gradle
subtitle: Master the technique of developing, migrating, and building automation using Gradle
cta_link: https://www.packtpub.com/web-development/mastering-gradle
cta_text: Purchase from Packt
description: With Gradle, you can efficiently build automation framework along with some flexible alternatives to customized build logic. This book starts with sound basics about build automation and how Gradle fits into this automation. It then moves on to give you a good exposure on Groovy—a scripting language used to write Gradle—and helps you understand a key elements of Groovy programming language. In the following chapters, you will deal with task management and learn how to integrate Ant tasks into build scripts. Furthermore, you will learn dependency management, plugin management, and its configuration techniques in Gradle. You will also get hands-on with building and testing projects using Gradle. You will then begin to cover diverse topics, such as Continuous Integration with Jenkins and TeamCity, Migration strategies, and Deployment, which enables you to learn concepts useful for Agile software development. Finally, you will also learn how to create a simple mobile application using Android and explore how Gradle can help you to build and test the application.

- title: Gradle Dependency Management
subtitle: Learn how to use Gradle's powerful dependency management through extensive code samples, and discover how to define, customize, and deploy dependencies
cta_link: https://www.packtpub.com/application-development/gradle-dependency-management
cta_text: Purchase from Packt
description: Gradle is the next generation in build automation. It allows you to define dependencies for your project in a clear way and also customize how they are resolved to suit your needs. It offers fine-grained control over how to publish your artifacts to Maven and Ivy repositories.
Gradle Dependency Management defines dependencies for your Java-based project and customizes how they are resolved. You will learn how to configure the publication of artifacts to different repositories. Packed with plenty of code samples, you will understand how to define the repositories that contain dependencies. Following this, you will learn how to customize the dependency resolution process in Gradle.

- title: Gradle Goodness Notebook
subtitle: Experience Gradle through code snippets
cta_link: https://leanpub.com/gradle-goodness-notebook
cta_text: Purchase from LeanPub
description: Learn more about Gradle features with code snippets and short articles. The articles and code will get you started quickly and will give more insight in Gradle.

---

Below you can see an incomplete list of Gradle related books.
Got a book recommendation? Add it here!
Loading