docs: fix version errors
This commit is contained in:
@@ -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")
|
||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
|||||||
Reference in New Issue
Block a user