|
|
|
|
LEADER |
00000cam a2200000Ia 4500 |
001 |
OR_ocn752976157 |
003 |
OCoLC |
005 |
20231017213018.0 |
006 |
m o d |
007 |
cr cnu---unuuu |
008 |
110916s2011 caua o 000 0 eng d |
010 |
|
|
|a 2012419702
|
040 |
|
|
|a UMI
|b eng
|e pn
|c UMI
|d CUS
|d COO
|d N$T
|d C6I
|d OCLCQ
|d DEBSZ
|d TEFOD
|d OCLCF
|d OKU
|d OCLCO
|d FMG
|d YDXCP
|d NLE
|d LLB
|d BTCTA
|d UKMGB
|d E7B
|d EBLCP
|d VT2
|d OCLCO
|d TEFOD
|d OCLCQ
|d OCLCO
|d OCLCQ
|d OCLCO
|d FEM
|d OCLCQ
|d BRL
|d CEF
|d AU@
|d WYU
|d UAB
|d OCLCQ
|d UKAHL
|d OCLCQ
|d OCLCO
|d OCLCQ
|d OCLCO
|
016 |
7 |
|
|a 015799594
|2 Uk
|
019 |
|
|
|a 713182656
|a 747731207
|a 780425589
|a 856992921
|a 859867957
|a 968063710
|a 968976286
|a 1192339575
|
020 |
|
|
|a 9781449313685
|q (electronic bk.)
|
020 |
|
|
|a 144931368X
|q (electronic bk.)
|
020 |
|
|
|a 9781449313098
|q (electronic bk.)
|
020 |
|
|
|a 1449313094
|q (electronic bk.)
|
020 |
|
|
|a 9781449304638
|
020 |
|
|
|a 144930463X
|
020 |
|
|
|a 9781449306816
|
020 |
|
|
|a 1449306810
|
020 |
|
|
|z 144930463X
|
029 |
1 |
|
|a DEBSZ
|b 368474577
|
029 |
1 |
|
|a DEBSZ
|b 397104383
|
029 |
1 |
|
|a HEBIS
|b 291541585
|
029 |
1 |
|
|a AU@
|b 000055773172
|
029 |
1 |
|
|a AU@
|b 000066229785
|
029 |
1 |
|
|a AU@
|b 000068983614
|
035 |
|
|
|a (OCoLC)752976157
|z (OCoLC)713182656
|z (OCoLC)747731207
|z (OCoLC)780425589
|z (OCoLC)856992921
|z (OCoLC)859867957
|z (OCoLC)968063710
|z (OCoLC)968976286
|z (OCoLC)1192339575
|
037 |
|
|
|a CL0500000112
|b Safari Books Online
|
037 |
|
|
|a 00DA3040-0235-403E-A385-A04A33FA711D
|b OverDrive, Inc.
|n http://www.overdrive.com
|
050 |
|
4 |
|a QA76.76.D47
|b B47 2011eb
|
072 |
|
7 |
|a COM
|x 051330
|2 bisacsh
|
082 |
0 |
4 |
|a 005.14
|2 22
|
049 |
|
|
|a UAMI
|
100 |
1 |
|
|a Berglund, Tim.
|
245 |
1 |
0 |
|a Building and testing with Gradle /
|c Tim Berglund and Matthew McCullough.
|
260 |
|
|
|a Sebastopol, CA :
|b O'Reilly,
|c ©2011.
|
300 |
|
|
|a 1 online resource (xvii, 87 pages) :
|b illustrations
|
336 |
|
|
|a text
|b txt
|2 rdacontent
|
337 |
|
|
|a computer
|b c
|2 rdamedia
|
338 |
|
|
|a online resource
|b cr
|2 rdacarrier
|
347 |
|
|
|a text file
|2 rda
|
588 |
0 |
|
|a Online resource; title from title screen (Safari, viewed Dec. 5, 2011).
|
588 |
0 |
|
|a Print version record.
|
520 |
8 |
|
|a Annotation
|b Build and test software written in Java and many other languages with Gradle, the open source project automation tool thats getting a lot of attention. This concise introduction provides numerous code examples to help you explore Gradle, both as a build tool and as a complete solution for automating the compilation, test, and release process of simple and enterprise-level applications. Discover how Gradle improves on the best ideas of Ant, Maven, and other build tools, with standards for developers who want them and lots of flexibility for those who prefer less structure. Use Gradle with Groovy, Clojure, Scala, and languages beyond the JVM, such as Flex and CGet started building a simple Java program using Gradle's command line tooling and a small build scriptLearn how to configure and construct tasks, Gradle's fundamental unit of build activityTake advantage of Gradle's integration with AntUse Gradle to integrate with or transition from Maven, and to build software more cleanlyPerform application unit and integration tests using JUnit, TestNG, Spock, and Geb.
|
505 |
0 |
|
|a Copyright; Dedication; Table of Contents; Foreword; Preface; Introduction; Conventions Used in This Book; Using Code Examples; Safari® Books Online; How to Contact Us; Acknowledgments from Tim Berglund; Acknowledgments from Matthew McCullough; Chapter 1. Hello, Gradle!; Build Files in Groovy; Domain-Specific Build Languages; Getting Started; MacOS Installation with Brew; Linux and MacOS Installation; Windows Installation; The Hello World Build File; Building a Java Program; The Gradle Command Line; Chapter 2. Gradle Tasks; Declaring a Task; Task Action; Task Configuration; Tasks Are Objects.
|
505 |
8 |
|
|a Methods of DefaultTaskdependsOn(task); doFirst(closure); doLast(closure); onlyIf(closure); Properties of DefaultTask; didWork; enabled; path; logger; logging; description; temporaryDir; Dynamic Properties; Task Types; Copy; Jar; JavaExec; Custom Task Types; Custom Tasks Types in the Build File; Custom Tasks in the Source Tree; Where Do Tasks Come From?; Conclusion; Chapter 3. Ant and Gradle; The Vocabulary; Hello Ant; Importing Custom Ant Tasks; Complex Ant Configuration; Importing an Entire Ant Build File; Ant Target and Gradle Task Codependence; Using AntBuilder; A Harmonic Duo.
|
505 |
8 |
|
|a Chapter 4. Maven and GradleCue Graven?; The Maven POM and Gradle Build; Maven Goals, Gradle Tasks; The Standard Maven Coordinates, Gradle Properties; More Gradle Properties; Dependencies; Repositories; Unit Testing; Multiple Source Directories; Default Tasks; The Maven Plug-in; Installing to the Local Maven Repository (Cache); Publishing to a Maven Repository; Maven2Gradle Build Script Converter; Maven POM Import; Conclusion; Chapter 5. Testing with Gradle; JUnit; TestNG; Spock; Geb and EasyB; Gradle's Testing Focus; Chapter 6. Multiproject Builds; Multiproject Build Structure.
|
505 |
8 |
|
|a Project-Specific Build FilesOne Master Build File; A Hybrid Multiproject Build; Individual, Unified, or Hybrid?; Multiproject Task Structure; Multiple Projects Your Way.
|
590 |
|
|
|a O'Reilly
|b O'Reilly Online Learning: Academic/Public Library Edition
|
630 |
0 |
7 |
|a Gradle (Computer software)
|2 sears
|
650 |
|
0 |
|a Computer software
|x Development
|x Management.
|
650 |
|
0 |
|a Computer programming
|x Management.
|
650 |
|
0 |
|a Open source software.
|
650 |
|
6 |
|a Logiciels libres.
|
650 |
|
7 |
|a COMPUTERS
|x Software Development & Engineering
|x Quality Assurance & Testing.
|2 bisacsh
|
650 |
|
7 |
|a Computer programming
|x Management
|2 fast
|
650 |
|
7 |
|a Computer software
|x Development
|x Management
|2 fast
|
650 |
|
7 |
|a Open source software
|2 fast
|
650 |
|
7 |
|a Java (Computer language)
|2 sears
|
650 |
|
7 |
|a Open source software.
|2 sears
|
650 |
|
7 |
|a Application software
|x Design.
|2 sears
|
700 |
1 |
|
|a McCullough, Matthew
|q (Matthew J.)
|
776 |
0 |
8 |
|i Print version:
|a Berglund, Tim; McCullough, Matthew.
|t Building and Testing With Gradle.
|d O'Reilly Media, Inc.; 2011
|z 9781449304638
|w (OCoLC)713182656
|
856 |
4 |
0 |
|u https://learning.oreilly.com/library/view/~/9781449306816/?ar
|z Texto completo (Requiere registro previo con correo institucional)
|
938 |
|
|
|a Askews and Holts Library Services
|b ASKH
|n AH26847603
|
938 |
|
|
|a Askews and Holts Library Services
|b ASKH
|n AH26847609
|
938 |
|
|
|a Baker and Taylor
|b BTCP
|n BK0009759393
|
938 |
|
|
|a ProQuest Ebook Central
|b EBLB
|n EBL741255
|
938 |
|
|
|a ebrary
|b EBRY
|n ebr10763586
|
938 |
|
|
|a EBSCOhost
|b EBSC
|n 414776
|
938 |
|
|
|a YBP Library Services
|b YANK
|n 7489219
|
938 |
|
|
|a YBP Library Services
|b YANK
|n 7471012
|
994 |
|
|
|a 92
|b IZTAP
|