Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Change artifactid for import guide of mockbukkit #4

Merged
merged 3 commits into from
Nov 9, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 9 additions & 5 deletions docs/en/user_guide/introduction/getting_started.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 <mockbukkit-version>` is the
`<mockbukkit-version>`release of MockBukkit, targeting plugins build for
For instance: `mockbukkit-v1.21 <mockbukkit-version>` is the
`<mockbukkit-version>` 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<minecraft-major-version>`
:::

## Installing MockBukkit

If you are new to Maven or Gradle, visit either
Expand All @@ -37,7 +41,7 @@ dependency in your build tool of choice:
<dependencies>
<dependency>
<groupId>org.mockbukkit.mockbukkit</groupId>
<artifactId>MockBukkit-v1.21</artifactId>
<artifactId>mockbukkit-v1.21</artifactId>
<version>4.0.0</version>
<scope>test</scope>
</dependency>
Expand All @@ -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")
}
```

Expand Down