MVN

com.github.claasahl : parser

Maven & Gradle

Feb 28, 2017
0 stars

PARSER · This is an open source library for parsing text-based inputs. PARSER makes use of context-free grammars to validate and parse sentences. Having specified such a grammar, the library takes care of parsing text-based inputs and returns a tree of nodes that represents the parsed sentence. Furthermore, it provides ways for interpreting and refining the returned tree of nodes. In essence, the library aims to remove the pain of parsing and instead allow focusing on processing and interpreting parsed results.

<dependency>
    <groupId>com.github.claasahl</groupId>
    <artifactId>parser</artifactId>
    <version>2.0.1</version>
</dependency>
Copy
pom.xml
Table Of Contents

Latest Version

Choose a version of com.github.claasahl : parser to add to Maven or Gradle - Latest Versions:

  • Latest Stable: 2.0.1

All Versions

Choose a version of com.github.claasahl : parser to add to Maven or Gradle - All Versions:

Version Vulnerabilities Updated
2.0.x
parser-2.0.1
parser-2.0.0
1.0.x
parser-1.0.2
parser-1.0.1

How to add a dependency to Maven

Add the following com.github.claasahl : parser maven dependency to the pom.xml file with your favorite IDE (IntelliJ / Eclipse / Netbeans):

<dependency>
    <groupId>com.github.claasahl</groupId>
    <artifactId>parser</artifactId>
    <version>2.0.1</version>
</dependency>

How to add a dependency to Gradle

Gradle Groovy DSL: Add the following com.github.claasahl : parser gradle dependency to your build.gradle file:

implementation 'com.github.claasahl:parser:2.0.1'

Gradle Kotlin DSL: Add the following com.github.claasahl : parser gradle kotlin dependency to your build.gradle.kts file:

implementation("com.github.claasahl:parser:2.0.1")

How to add a dependency to SBT Scala

SBT Scala: Add the following com.github.claasahl : parser sbt scala dependency to your build.sbt file:

libraryDependencies += "com.github.claasahl" % "parser" % "2.0.1"

Advertisement