From f7d418d839614701fdb5442d1fb6766c23e841f9 Mon Sep 17 00:00:00 2001 From: Thorinwasher Date: Fri, 8 Nov 2024 19:52:56 +0100 Subject: [PATCH 1/3] fix(introduction): Change artifactid for import guide --- docs/en/user_guide/introduction/getting_started.md | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) diff --git a/docs/en/user_guide/introduction/getting_started.md b/docs/en/user_guide/introduction/getting_started.md index 62ab4df..4fa3663 100644 --- a/docs/en/user_guide/introduction/getting_started.md +++ b/docs/en/user_guide/introduction/getting_started.md @@ -15,11 +15,15 @@ The most important thing to remember is that each version of MockBukkit is named after the version of Bukkit it implements, followed by the version number of MockBukkit itself. -For instance: `MockBukkit-v1.21 ` is the -``release of MockBukkit, targeting plugins build for +For instance: `mockbukkit-v1.21 ` is the +`` release of MockBukkit, targeting plugins build for Minecraft 1.21. The latest stable version can always be found on [Maven Central](https://search.maven.org/search?q=MockBukkit). +:::tip +Before MockBukkit 4.0, the artifact id follows this pattern `MockBukkit-v` +::: + ## Installing MockBukkit If you are new to Maven or Gradle, visit either @@ -37,7 +41,7 @@ dependency in your build tool of choice: org.mockbukkit.mockbukkit - MockBukkit-v1.21 + mockbukkit-v1.21 4.0.0 test @@ -46,13 +50,13 @@ dependency in your build tool of choice: ```groovy [Gradle] dependencies { - testImplementation 'org.mockbukkit.mockbukkit:MockBukkit-v1.21:4.0.0' + testImplementation 'org.mockbukkit.mockbukkit:mockbukkit-v1.21:4.0.0' } ``` ```kotlin [Gradle Kotlin DSL] dependencies { - testImplementation("org.mockbukkit.mockbukkit:MockBukkit-v1.21:4.0.0") + testImplementation("org.mockbukkit.mockbukkit:mockbukkit-v1.21:4.0.0") } ``` From bc30929f37fb63eb8067c5f864be243bd2afad1b Mon Sep 17 00:00:00 2001 From: Thorinwasher Date: Fri, 8 Nov 2024 20:54:01 +0100 Subject: [PATCH 2/3] test(introduction): Fix natural language being flagged --- docs/en/user_guide/introduction/getting_started.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/en/user_guide/introduction/getting_started.md b/docs/en/user_guide/introduction/getting_started.md index 4fa3663..9044846 100644 --- a/docs/en/user_guide/introduction/getting_started.md +++ b/docs/en/user_guide/introduction/getting_started.md @@ -21,7 +21,7 @@ Minecraft 1.21. The latest stable version can always be found on [Maven Central](https://search.maven.org/search?q=MockBukkit). :::tip -Before MockBukkit 4.0, the artifact id follows this pattern `MockBukkit-v` +Before MockBukkit 4.0, the artifact-id follows this pattern `MockBukkit-v` ::: ## Installing MockBukkit From 82747b19661907bb48ea780a22c350bbe72bbc09 Mon Sep 17 00:00:00 2001 From: Thorinwasher Date: Sat, 9 Nov 2024 09:52:38 +0100 Subject: [PATCH 3/3] grammar(introduction): id -> ID --- docs/en/user_guide/introduction/getting_started.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/en/user_guide/introduction/getting_started.md b/docs/en/user_guide/introduction/getting_started.md index 9044846..1577f64 100644 --- a/docs/en/user_guide/introduction/getting_started.md +++ b/docs/en/user_guide/introduction/getting_started.md @@ -21,7 +21,7 @@ Minecraft 1.21. The latest stable version can always be found on [Maven Central](https://search.maven.org/search?q=MockBukkit). :::tip -Before MockBukkit 4.0, the artifact-id follows this pattern `MockBukkit-v` +Before MockBukkit 4.0, the artifact-ID follows this pattern `MockBukkit-v` ::: ## Installing MockBukkit