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
4 changes: 2 additions & 2 deletions content/apt/guides/mini/guide-configuring-maven.apt
Original file line number Diff line number Diff line change
Expand Up @@ -162,10 +162,10 @@ export MAVEN_OPTS=-Dmaven.artifact.threads=3

** Security

As of Maven 2.1.0+, you can encrypt passwords in your settings file, however you must first configure a master password. For more information on
You can encrypt passwords in your settings file. However, you must first configure a master password. For more information on
both server passwords and the master password, see the {{{./guide-encryption.html}Guide to Password Encryption}}.

** Toolchains

As of Maven 2.0.9+, you can build a project using a specific version of JDK independent from the one Maven is running with.
You can build a project using a specific version of JDK independent from the one Maven is running with.
For more information, see the {{{./guide-using-toolchains.html}Guide to Using Toolchains}}.
8 changes: 4 additions & 4 deletions content/apt/guides/mini/guide-using-toolchains.apt
Original file line number Diff line number Diff line change
Expand Up @@ -33,18 +33,18 @@ Guide to Using Toolchains

* What is Toolchains?

The Maven Toolchains provide a way for plugins to discover what JDK (or other tools) are to be used during the build,
Maven Toolchains provide a way for plugins to discover what JDK (or other tools) are to be used during the build,
without the need to configure them in each plugin nor in every <<<pom.xml>>>, or forcing a precise location among every
machine building the project.

With Maven Toolchains applied to JDK toolchain, a project can now be built using a specific version of JDK independent
With Maven Toolchains applied to JDK toolchain, a project can be built using a specific version of JDK independent
from the one Maven is running with. Think how JDK versions can be set in IDEs like IDEA, NetBeans and Eclipse, or how you can
compile with an older JDK from Maven running with a recent one.

** Prerequisites

Toolchains will only work in Maven 2.0.9 and higher versions. For more details about its design and implementation,
please see {{{http://cwiki.apache.org/confluence/display/MAVENOLD/Toolchains}Toolchains}}.
For more details about Toolchains' design and implementation,
see {{{https://cwiki.apache.org/confluence/display/MAVENOLD/Toolchains}Toolchains}}.

Below are some plugins which are toolchain-aware, with the toolchain-type used:

Expand Down