Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
Aklakan committed Feb 16, 2024
1 parent 57a310c commit 931c971
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 3 deletions.
10 changes: 8 additions & 2 deletions docs/concepts/artifact-naming.md
Original file line number Diff line number Diff line change
@@ -1,14 +1,15 @@
---
title: Artifact Naming
layout: default
parent: Concepts
nav_order: 20
---

## Artifact Naming

Artifacts in Maven are located along a 5 dimensional coordinate system.

The three most fields are:
The three most fundamental fields are:

* `groupId`
* `artifactId`
Expand All @@ -28,7 +29,12 @@ The remaining two fields are:

### Syntax

Maven coordinates are usually represented with the syntax `groupId:artifactId:version[:type[:classifier]]`.
Maven coordinates are usually represented with the syntax:

```
groupId:artifactId:version[:type[:classifier]]
```

The `[]` indicate optional fields, so type and classifier may be omitted, but if a classifier is needed, then a type must be given as well.

Obviously colons (`:`) must not be used within values for any of the fields.
Expand Down
3 changes: 2 additions & 1 deletion docs/concepts/version-design.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
---
title: Version Design
layout: default
nav_order: 18
parent: Concepts
nav_order: 30
---

## Version Design Considerations
Expand Down

0 comments on commit 931c971

Please sign in to comment.