@@ -15,11 +15,15 @@ The most important thing to remember is that each version of MockBukkit is named
1515after the version of Bukkit it implements, followed by the version number of
1616MockBukkit 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
2020Minecraft 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
2529If 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]
4852dependencies {
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]
5458dependencies {
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