Skip to content
Open
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
7 changes: 6 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ val ast = booleanGrammar.parse("a & (b1 -> c1) | a1 & !b | !(a1 -> a2) -> a").ge

```kotlin
dependencies {
implementation("me.alllex.parsus:parsus-jvm:0.6.1")
implementation("me.alllex.parsus:parsus:0.6.1")
}
```

Expand Down Expand Up @@ -75,6 +75,11 @@ kotlin {
</dependency>
```

> ℹ️ The Parsus artifact ID must have a `-jvm` suffix when using Maven.
>
> Parsus is a Kotlin Multiplatform library with multiple targets, and Maven only supports JVM targets, and needs the `-jvm` suffix to select the Kotlin/JVM artifact.
> (Gradle can automatically select the correct target, and does not require a suffix.)

</details>

## Features
Expand Down