Skip to content

Commit

Permalink
Updating dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
nathanfallet committed Feb 16, 2024
1 parent 8b59197 commit 057643f
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 26 deletions.
4 changes: 2 additions & 2 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ plugins {
}

group = "me.nathanfallet.makth"
version = "1.2.4"
version = "1.2.5"

repositories {
mavenCentral()
Expand Down Expand Up @@ -63,7 +63,7 @@ kotlin {
}
val commonMain by getting {
dependencies {
api("me.nathanfallet.usecases:usecases:1.5.5")
api("me.nathanfallet.usecases:usecases:1.5.6")
}
}
val commonTest by getting {
Expand Down
30 changes: 6 additions & 24 deletions docs/getstarted/install.md
Original file line number Diff line number Diff line change
@@ -1,44 +1,26 @@
# Installation

## Maven
Add dependency to your `build.gradle(.kts)` or `pom.xml`:

Add the following to your `pom.xml` file;
```kotlin
api("me.nathanfallet.makth:makth:1.2.5")
```

```xml

<dependency>
<groupId>me.nathanfallet.makth</groupId>
<artifactId>makth-jvm</artifactId>
<version>1.2.4</version>
<version>1.2.5</version>
</dependency>
```

## Gradle

Add the following to your `build.gradle` file:

```groovy
repositories {
mavenCentral()
}
dependencies {
implementation 'me.nathanfallet.makth:makth:1.2.4'
}
```

## npm

Install the package using npm:
Or in a JS project with:

```bash
npm install makth
```

## yarn

Install the package using yarn:

```bash
yarn add makth
```

0 comments on commit 057643f

Please sign in to comment.