Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Tighten language #327

Merged
merged 1 commit into from
Jun 22, 2023
Merged
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
10 changes: 5 additions & 5 deletions src/site/apt/usage.apt.vm
Original file line number Diff line number Diff line change
Expand Up @@ -333,7 +333,7 @@ mvn dependency:unpack

Also included is the ability to include or exclude by type (war, jar etc), scope (runtime, test, etc), classifier (jdk14, sources, etc), groupId, artifactId, or a combination of them.

<<Note:>> As of 2.0-alpha-5, you may mix includes and excludes of the same category (ie scope). Includes are processed before excludes.
<<Note:>> You can mix includes and excludes of the same category (i.e. scope). Includes are processed before excludes.

See the {{{#Overwrite_Rules}Overwrite Rules}} section for rules about how overwriting is handled.

Expand Down Expand Up @@ -643,7 +643,7 @@ java -cp `cat resultFile` MyClass
mvn dependency:build-classpath
+---+

or to write the classpath to cp.txt.:
or to write the classpath to cp.txt:

+---+
mvn dependency:build-classpath -Dmdep.outputFile=cp.txt
Expand Down Expand Up @@ -682,13 +682,13 @@ mvn dependency:build-classpath -Dmdep.outputFile=cp.txt

* <<<dependency:list-repositories>>>

This goal is used to list all the repositories that this build depends upon. It will show repositories defined in your settings,
poms and declared in transitive dependency poms.
This goal lists all the repositories that this build depends upon. It shows repositories defined in your settings,
poms, and declared in transitive dependency poms.


* <<<dependency:get>>>

This goal is used to fetch an artifact and (optionally) its dependencies from remote repositories using its Maven coordinates.
This goal fetches an artifact and (optionally) its dependencies from remote repositories using its Maven coordinates.

+-----+
mvn dependency:get -DgroupId=org.apache.maven -DartifactId=maven-core -Dversion=2.2.1 -Dpackaging=jar -Dclassifier=sources -DremoteRepositories=central::default::https://repo.maven.apache.org/maven2,myrepo::::http://myrepo.com/maven2
Expand Down