diff options
author | GitLab Bot <gitlab-bot@gitlab.com> | 2020-02-23 15:09:08 +0000 |
---|---|---|
committer | GitLab Bot <gitlab-bot@gitlab.com> | 2020-02-23 15:09:08 +0000 |
commit | 9083509f2f0e424b1d53cca4877d994d2050562b (patch) | |
tree | 8fc6f249d4139f0ce10fec54a4ac2d8ba05c7814 /doc/user/packages | |
parent | c77e16429bb6102bd81ac0c2d651d8c5c6ff40a5 (diff) | |
download | gitlab-ce-9083509f2f0e424b1d53cca4877d994d2050562b.tar.gz |
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'doc/user/packages')
-rw-r--r-- | doc/user/packages/maven_repository/index.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/user/packages/maven_repository/index.md b/doc/user/packages/maven_repository/index.md index c1f943017bc..8e06153ccb2 100644 --- a/doc/user/packages/maven_repository/index.md +++ b/doc/user/packages/maven_repository/index.md @@ -60,7 +60,7 @@ published to the GitLab Package Registry. Start by opening your terminal and creating a directory where you would like to store the project in your environment. From inside the directory, you can run -the following Maven command to initalize a new package: +the following Maven command to initialize a new package: ```shell mvn archetype:generate -DgroupId=com.mycompany.mydepartment -DartifactId=my-project -DarchetypeArtifactId=maven-archetype-quickstart -DinteractiveMode=false @@ -71,7 +71,7 @@ The arguments are as follows: - `DgroupId`: A unique string that identifies your package. You should follow the [Maven naming conventions](https://maven.apache.org/guides/mini/guide-naming-conventions.html). - `DartifactId`: The name of the JAR, appended to the end of the `DgroupId`. -- `DarchetypeArtifactId`: The archetype used to create the intial structure of +- `DarchetypeArtifactId`: The archetype used to create the initial structure of the project. - `DinteractiveMode`: Create the project using batch mode (optional). |