Skip to content

Commit 9439868

Browse files
authored
Merge pull request #4 from MockBukkit/fix/invalid-import-location
2 parents c12aee5 + 82747b1 commit 9439868

File tree

1 file changed

+9
-5
lines changed

1 file changed

+9
-5
lines changed

docs/en/user_guide/introduction/getting_started.md

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,15 @@ The most important thing to remember is that each version of MockBukkit is named
1515
after the version of Bukkit it implements, followed by the version number of
1616
MockBukkit itself.
1717

18-
For instance: `MockBukkit-v1.21 <mockbukkit-version>` is the
19-
`<mockbukkit-version>`release of MockBukkit, targeting plugins build for
18+
For instance: `mockbukkit-v1.21 <mockbukkit-version>` is the
19+
`<mockbukkit-version>` release of MockBukkit, targeting plugins build for
2020
Minecraft 1.21. The latest stable version can always be found on
2121
[Maven Central](https://search.maven.org/search?q=MockBukkit).
2222

23+
:::tip
24+
Before MockBukkit 4.0, the artifact-ID follows this pattern `MockBukkit-v<minecraft-major-version>`
25+
:::
26+
2327
## Installing MockBukkit
2428

2529
If you are new to Maven or Gradle, visit either
@@ -37,7 +41,7 @@ dependency in your build tool of choice:
3741
<dependencies>
3842
<dependency>
3943
<groupId>org.mockbukkit.mockbukkit</groupId>
40-
<artifactId>MockBukkit-v1.21</artifactId>
44+
<artifactId>mockbukkit-v1.21</artifactId>
4145
<version>4.0.0</version>
4246
<scope>test</scope>
4347
</dependency>
@@ -46,13 +50,13 @@ dependency in your build tool of choice:
4650

4751
```groovy [Gradle]
4852
dependencies {
49-
testImplementation 'org.mockbukkit.mockbukkit:MockBukkit-v1.21:4.0.0'
53+
testImplementation 'org.mockbukkit.mockbukkit:mockbukkit-v1.21:4.0.0'
5054
}
5155
```
5256

5357
```kotlin [Gradle Kotlin DSL]
5458
dependencies {
55-
testImplementation("org.mockbukkit.mockbukkit:MockBukkit-v1.21:4.0.0")
59+
testImplementation("org.mockbukkit.mockbukkit:mockbukkit-v1.21:4.0.0")
5660
}
5761
```
5862

0 commit comments

Comments
 (0)