You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by hb...@apache.org on 2022/02/03 07:09:48 UTC

[maven-site] 05/07: WIP

This is an automated email from the ASF dual-hosted git repository.

hboutemy pushed a commit to branch maven-repository-layout
in repository https://gitbox.apache.org/repos/asf/maven-site.git

commit f3e4deac204cf6e22f7fb86ff4611f50293f9d71
Author: Tamas Cservenak <ta...@cservenak.net>
AuthorDate: Wed Jan 19 17:09:37 2022 +0100

    WIP
---
 content/markdown/repositories/index.md | 22 +++++++++++-----------
 1 file changed, 11 insertions(+), 11 deletions(-)

diff --git a/content/markdown/repositories/index.md b/content/markdown/repositories/index.md
index 66c3b9e..848be72 100644
--- a/content/markdown/repositories/index.md
+++ b/content/markdown/repositories/index.md
@@ -62,8 +62,8 @@ of "project" and "parent project" (aka POMs):
 | groupId    | -> groupId    |
 | artifactId | -> artifactId |
 | version    | -> version    |
-| classifier | empty         |
-| extension  | "pom"         |
+| classifier | -> empty      |
+| extension  | -> "pom"      |
 
 In case of "build plugins" and "build extensions", as they are JARs, this is how corresponding elements are mapped:
 
@@ -72,17 +72,17 @@ In case of "build plugins" and "build extensions", as they are JARs, this is how
 | groupId    | -> groupId    |
 | artifactId | -> artifactId |
 | version    | -> version    |
-| classifier | empty         |
-| extension  | "jar"         |
+| classifier | -> empty      |
+| extension  | -> "jar"      |
 
 And finally, in case of "dependencies", this is the mapping:
 
-| Dependency | Artifact                                 |
-|------------|------------------------------------------|
-| groupId    | -> groupId                               |
-| artifactId | -> artifactId                            |
-| version    | -> version                               |
-| classifier | -> classifier                            |
-| type       | -> type handler provided or same as type |
+| Dependency | Artifact                                  |
+|------------|-------------------------------------------|
+| groupId    | -> groupId                                |
+| artifactId | -> artifactId                             |
+| version    | -> version                                |
+| classifier | -> classifier                             |
+| type       | -> type handler provided, or same as type |
 
 Here, we need to make a short turn to explain "type" (of a dependency) and how it becomes artifact extension.