Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/site/markdown/cache-configuration.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ under the License.
-->
# Maven Cache Configuration Enhancement

This document describes the enhanced cache configuration functionality in Maven's DefaultRequestCache.
This document describes the enhanced cache configuration functionality in `DefaultRequestCache`.

## Overview

Expand Down
16 changes: 12 additions & 4 deletions src/site/markdown/configuring.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,8 +51,8 @@ various parts of the system. The main entry point is the
`${maven.home}/conf/maven.properties` properties file. This file,
along with any other files loaded from it (see below) are called
_Maven properties files_ and are Java properties files with a
few enhancements. Contrary to standard properties file, those files
are UTF-8 encoded.
few enhancements. Unlike standard properties files, these files are
UTF-8 encoded.

### File Inclusion

Expand Down Expand Up @@ -90,13 +90,21 @@ from `${session.rootDirectory}/.mvn/maven-user.properties`.

## Settings

Settings are configured in the `~/.m2/settings.xml` file (user level),
`${session.rootDirectory}/.mvn/settings.xml` (project level), and
`${maven.installation.conf}/settings.xml` (Maven installation level). See [Settings Reference](./api/maven-api-settings/settings.html) for details.

## Extensions

Extensions allow you to add additional functionality to Maven. They are
configured in the `~/.m2/extensions.xml` file (user level),
`${session.rootDirectory}/.mvn/extensions.xml` (project level), and `${maven.installation.conf}/extensions.xml` (Maven installation level).

## Maven Command Line Arguments

Maven is a command line tool, and, as such, accepts various command
line arguments. The `MAVEN_ARGS` environment value is used to
provide additional arguments to Maven. Those arguments will be
line arguments. The `MAVEN_ARGS` environment variable is used to
provide additional arguments to Maven. These arguments will be
prepended to the actual list of command line arguments.

For example, options and goals could be defined with the value
Expand Down
Loading