- Mastering Gradle
- Mainak Mitra
- 218字
- 2021-07-16 20:49:31
Conventions
In this book, you will find a number of text styles that distinguish between different kinds of information. Here are some examples of these styles and an explanation of their meaning.
Code words in text, database table names, folder names, filenames, file extensions, pathnames, dummy URLs, user input, and Twitter handles are shown as follows: "Gradle shares the same JVM options set by the environment variable JAVA_OPTS
."
A block of code is set as follows:
def methodMissing(String name, args) { if (name.startsWith("plus") ) { // write your own implementation return "plus method intercepted" } else { println "Method name does not start with plus" throw new MissingMethodException(name, this.class, args) } }
When we wish to draw your attention to a particular part of a code block, the relevant lines or items are set in bold:
apply plugin: 'java'
version=1.0
configurations {
customDep
}
repositories {
mavenCentral()
}
Any command-line input or output is written as follows:
$ gradle –b build_customconf.gradle showCustomDep :showCustomDep
New terms and important words are shown in bold. Words that you see on the screen, for example, in menus or dialog boxes, appear in the text like this: "Click on OK to add the repository."
- 精通Nginx(第2版)
- 軟件項目管理(第2版)
- HoloLens Beginner's Guide
- Vue.js 2 and Bootstrap 4 Web Development
- Neo4j Essentials
- Mastering Unity Shaders and Effects
- Internet of Things with Intel Galileo
- ASP.NET 3.5程序設計與項目實踐
- 零基礎學Python數據分析(升級版)
- 深入淺出Serverless:技術原理與應用實踐
- 前端HTML+CSS修煉之道(視頻同步+直播)
- C++20高級編程
- 詳解MATLAB圖形繪制技術
- Microsoft 365 Certified Fundamentals MS-900 Exam Guide
- Java Web開發實例大全(基礎卷) (軟件工程師開發大系)