Introducing Gradle Introducing Gradle Is a Quick Start-Up Primer on the Gradle Build Automation Tool
Total Page:16
File Type:pdf, Size:1020Kb
BOOKS FOR PROFESSIONALS BY PROFESSIONALS® Varanasi Belida RELATED Introducing Gradle Introducing Gradle is a quick start-up primer on the Gradle build automation tool. You will learn about Gradle and how to set it up to use. You will learn the basics of Groovy, the language used for creating Gradle build fi les. Also, you will learn about tasks, plugins and build lifecycle. Furthermore, you will learn how to create and use a custom plugin. After reading and using Introducing Gradle, you will have an understanding of Gradle’s dependency management and how to single and multi-projects are structured and confi gured. You will learn how to use Gradle for publishing artifacts to local and Nexus remote repository. Finally, you will learn Jenkins support for Gradle. You will learn: • What Gradle is and how it compares with Ant, Maven and more • How to set up and test Gradle • What tasks and projects are • How to use out of the box plugins • How to create a custom plugin • Gradle’s support for dependency management • How to publish artifacts to local and remote repos • How to confi gure Jenkins to work with Gradle • How multi-projects are organized • Basic Groovy language features ISBN 978-1-4842-1032-1 Shelve in: 52999 Programming Languages/Java User level: Beginning SOURCE CODE ONLINE 9781484 210321 www.apress.com Introducing Gradle Balaji Varanasi Sudha Belida Introducing Gradle Copyright © 2015 by Balaji Varanasi and Sudha Belida This work is subject to copyright. All rights are reserved by the Publisher, whether the whole or part of the material is concerned, specifically the rights of translation, reprinting, reuse of illustrations, recitation, broadcasting, reproduction on microfilms or in any other physical way, and transmission or information storage and retrieval, electronic adaptation, computer software, or by similar or dissimilar methodology now known or hereafter developed. Exempted from this legal reservation are brief excerpts in connection with reviews or scholarly analysis or material supplied specifically for the purpose of being entered and executed on a computer system, for exclusive use by the purchaser of the work. Duplication of this publication or parts thereof is permitted only under the provisions of the Copyright Law of the Publisher’s location, in its current version, and permission for use must always be obtained from Springer. Permissions for use may be obtained through RightsLink at the Copyright Clearance Center. Violations are liable to prosecution under the respective Copyright Law. ISBN-13 (pbk): 978-1-4842-1032-1 ISBN-13 (electronic): 978-1-4842-1031-4 Trademarked names, logos, and images may appear in this book. Rather than use a trademark symbol with every occurrence of a trademarked name, logo, or image we use the names, logos, and images only in an editorial fashion and to the benefit of the trademark owner, with no intention of infringement of the trademark. The use in this publication of trade names, trademarks, service marks, and similar terms, even if they are not identified as such, is not to be taken as an expression of opinion as to whether or not they are subject to proprietary rights. While the advice and information in this book are believed to be true and accurate at the date of publication, neither the authors nor the editors nor the publisher can accept any legal responsibility for any errors or omissions that may be made. The publisher makes no warranty, express or implied, with respect to the material contained herein. Managing Director: Welmoed Spahr Lead Editor: Steve Anglin Technical Reviewer: Manuel Jordan Elera Editorial Board: Steve Anglin, Mark Beckner, Louise Corrigan, Jonathan Gennick, Robert Hutchinson, Michelle Lowman, James Markham, Susan McDermott, Matthew Moodie, Jeffrey Pepper, Douglas Pundick, Ben Renow-Clarke, Gwenan Spearing Coordinating Editor: Mark Powers Copy Editor: Kezia Endsley Compositor: SPi Global Indexer: SPi Global Artist: SPi Global Distributed to the book trade worldwide by Springer Science+Business Media New York, 233 Spring Street, 6th Floor, New York, NY 10013. Phone 1-800-SPRINGER, fax (201) 348-4505, e-mail [email protected], or visit www.springeronline.com. Apress Media, LLC is a California LLC and the sole member (owner) is Springer Science + Business Media Finance Inc (SSBM Finance Inc). SSBM Finance Inc is a Delaware corporation. For information on translations, please e-mail [email protected], or visit www.apress.com. Apress and friends of ED books may be purchased in bulk for academic, corporate, or promotional use. eBook versions and licenses are also available for most titles. For more information, reference our Special Bulk Sales–eBook Licensing web page at www.apress.com/bulk-sales. Any source code or other supplementary materials referenced by the author in this text is available to readers at www.apress.com/9781484210321. For detailed information about how to locate your book’s source code, go to www.apress.com/source-code/. Readers can also access source code at SpringerLink in the Supplementary Material section for each chapter. Contents at a Glance About the Authors ............................................................................. xi About the Technical Reviewer ........................................................ xiii Acknowledgments ........................................................................... xv Introduction ................................................................................... xvii ■ Chapter 1: Getting Started .............................................................. 1 ■ Chapter 2: Setting Up Gradle .......................................................... 7 ■ Chapter 3: Groovy Language Primer ............................................. 17 ■ Chapter 4: Understanding Gradle Builds ...................................... 27 ■ Chapter 5: Projects and Plugins ................................................... 41 ■ Chapter 6: Dependency Management ........................................... 67 ■ Chapter 7: Multi-Project Builds .................................................... 87 ■ Chapter 8: Publishing Artifacts .................................................... 99 ■ Chapter 9: Continuous Integration .............................................. 111 Index .............................................................................................. 129 iii Contents About the Authors ............................................................................. xi About the Technical Reviewer ........................................................ xiii Acknowledgments ........................................................................... xv Introduction ................................................................................... xvii ■ Chapter 1: Getting Started .............................................................. 1 Declarative Dependency Management ���������������������������������������������������� 1 Declarative Builds ����������������������������������������������������������������������������������� 2 Build by Convention ��������������������������������������������������������������������������������� 2 Incremental Builds ���������������������������������������������������������������������������������� 2 Gradle Wrapper���������������������������������������������������������������������������������������� 2 Plugins����������������������������������������������������������������������������������������������������� 3 Open Source �������������������������������������������������������������������������������������������� 3 Gradle Alternatives ���������������������������������������������������������������������������������� 3 Ant + Ivy �������������������������������������������������������������������������������������������������������������������3 Maven �����������������������������������������������������������������������������������������������������������������������4 Summary ������������������������������������������������������������������������������������������������� 5 ■ Chapter 2: Setting Up Gradle .......................................................... 7 Installation Prerequisites ������������������������������������������������������������������������� 7 Setting Up Java ���������������������������������������������������������������������������������������������������������7 Downloading Gradle �������������������������������������������������������������������������������������������������7 v ■ CONTENTS Installing Gradle �������������������������������������������������������������������������������������� 8 Installing on Windows �����������������������������������������������������������������������������������������������8 Testing the Installation �������������������������������������������������������������������������������������������11 Installing on Mac OS X ��������������������������������������������������������������������������������������������11 Setting Gradle’s JVM Options ���������������������������������������������������������������������������������12 Gradle Distribution ��������������������������������������������������������������������������������������������������13 Hello World Gradle Script ���������������������������������������������������������������������� 13 Getting Help ������������������������������������������������������������������������������������������� 14 Gradle GUI���������������������������������������������������������������������������������������������� 15 IDE Support �������������������������������������������������������������������������������������������