From eccfe592542f791d2d724cce8f58b80f0696fc68 Mon Sep 17 00:00:00 2001 From: Aleksei Semin Date: Wed, 30 Jun 2021 09:28:00 +0200 Subject: [PATCH] Update artifact location info --- README.md | 15 +++++++++++++-- 1 file changed, 13 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index d7d13a5..23bca2b 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,7 @@ # Parsus -[![JitPack](https://jitpack.io/v/alllex/parsus.svg)](https://jitpack.io/#alllex/parsus) +[![Maven Central](https://img.shields.io/maven-central/v/me.alllex.parsus/parsus.svg?color=success)](https://search.maven.org/search?q=g:me.alllex.parsus) +[![License: MIT](https://img.shields.io/badge/License-MIT-blue.svg)](https://opensource.org/licenses/MIT) [![Gradle build](https://github.com/alllex/parsus/actions/workflows/gradle.yml/badge.svg)](https://github.com/alllex/parsus/actions/workflows/gradle.yml) A framework for writing composable parsers based on Kotlin Coroutines. @@ -34,10 +35,20 @@ val ast = booleanGrammar.parseToEnd("a & (b1 -> c1) | a1 & !b | !(a1 -> a2) -> a ```kotlin dependencies { - implementation("com.github.alllex:parsus:v0.1.2") + implementation("me.alllex.parsus:parsus:0.1.3") } ``` +### Using with Maven + +```xml + + me.alllex.parsus + parsus + 0.1.3 + +``` + ## Features * **0-dependencies**. Parsus only depends on Kotlin Standard Library.