- 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."
- Docker and Kubernetes for Java Developers
- Mastering Objectoriented Python
- Raspberry Pi 2 Server Essentials
- Mastering Swift 2
- C++程序設(shè)計(jì)基礎(chǔ)教程
- 重學(xué)Java設(shè)計(jì)模式
- Python算法從菜鳥到達(dá)人
- MATLAB 2020從入門到精通
- 劍指大數(shù)據(jù):企業(yè)級(jí)數(shù)據(jù)倉(cāng)庫(kù)項(xiàng)目實(shí)戰(zhàn)(在線教育版)
- 遠(yuǎn)方:兩位持續(xù)創(chuàng)業(yè)者的點(diǎn)滴思考
- Java程序設(shè)計(jì)教程
- C語(yǔ)言程序設(shè)計(jì)
- FORTRAN程序設(shè)計(jì)權(quán)威指南
- Vue.js項(xiàng)目開(kāi)發(fā)實(shí)戰(zhàn)
- C#編程魔法書