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

Update dependencies info #31

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
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
Loading