docs: fix version errors

This commit is contained in:
siujamo
2025-06-24 11:28:08 +08:00
parent 0e87c0f336
commit 39c5d230d6
+3 -3
View File
@@ -17,7 +17,7 @@ Add the `version-catalogue` to your `pom.xml` under `<dependencyManagement>`:
<dependency> <dependency>
<groupId>com.onixbyte</groupId> <groupId>com.onixbyte</groupId>
<artifactId>version-catalogue</artifactId> <artifactId>version-catalogue</artifactId>
<version>${devkit-version}</version> <version>3.0.0</version>
<type>pom</type> <type>pom</type>
<scope>import</scope> <scope>import</scope>
</dependency> </dependency>
@@ -33,7 +33,7 @@ In your `build.gradle[.kts]`, apply the BOM using the `platform` dependency:
```groovy ```groovy
dependencies { dependencies {
implementation platform('com.onixbyte:version-catalogue:2.0.0') implementation platform('com.onixbyte:version-catalogue:3.0.0')
implementation 'com.onixbyte:common-toolbox' implementation 'com.onixbyte:common-toolbox'
} }
``` ```
@@ -42,7 +42,7 @@ If you are using Kotlin DSL:
```kotlin ```kotlin
dependencies { dependencies {
implementation(platform("com.onixbyte:version-catalogue:2.0.0")) implementation(platform("com.onixbyte:version-catalogue:3.0.0"))
implementation("com.onixbyte:common-toolbox") implementation("com.onixbyte:common-toolbox")
} }
``` ```