- Maven Essentials
- Prabath Siriwardena
- 168字
- 2021-07-30 10:11:26
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: "When you type mvn clean install
, Maven will execute all the phases in the default lifecycle up to install
(including the install
phase)."
A block of code is set as follows:
<project> [...] <build> [...] <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.1</version> <configuration> <source>1.7</source> <target>1.7</target> </configuration> </plugin> </plugins> [...] </build> [...] </project>
When we wish to draw your attention to a particular part of a code block, the relevant lines or items are set in bold:
<project> [...] <build> [...] <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.1</version> <configuration> <source>1.7</source> <target>1.7</target> </configuration> </plugin> </plugins> [...] </build> [...] </project>
Any command-line input or output is written as follows:
$ mvn install:install
New terms and important words are shown in bold.
Note
Warnings or important notes appear in a box like this.
Tip
Tips and tricks appear like this.
- SoapUI Cookbook
- LabVIEW程序設計基礎與應用
- Spring Cloud Alibaba微服務架構設計與開發實戰
- JIRA 7 Administration Cookbook(Second Edition)
- HBase從入門到實戰
- Python金融數據分析
- Learning Three.js:The JavaScript 3D Library for WebGL
- UML 基礎與 Rose 建模案例(第3版)
- Salesforce Reporting and Dashboards
- Vue.js 2 Web Development Projects
- MongoDB Cookbook(Second Edition)
- 微前端設計與實現
- Python機器學習與量化投資
- Flink核心技術:源碼剖析與特性開發
- 信息學奧林匹克競賽初賽精講精練