# vavr-render
**Repository Path**: mirrors_vavr-io/vavr-render
## Basic Information
- **Project Name**: vavr-render
- **Description**: A rendering library, currently housing graph renderers (ascii and graphviz).
- **Primary Language**: Unknown
- **License**: MIT
- **Default Branch**: master
- **Homepage**: None
- **GVP Project**: No
## Statistics
- **Stars**: 0
- **Forks**: 0
- **Created**: 2020-08-18
- **Last Updated**: 2026-04-04
## Categories & Tags
**Categories**: Uncategorized
**Tags**: None
## README
[](https://maven-badges.herokuapp.com/maven-central/io.vavr/vavr-render)
[](https://travis-ci.org/vavr-io/vavr-render)
[](https://codecov.io/gh/vavr-io/vavr-render)
# vavr-render
A rendering library for [Vavr](http://vavr.io/), currently housing ascii prettifyers.
## Usage
### Maven
```xml
io.vavr
vavr-render
0.9.0
```
### Gradle
```groovy
compile("io.vavr:vavr-render:0.9.0")
```
## Using Developer Versions
Developer versions can be found [here](https://oss.sonatype.org/content/repositories/snapshots/io/vavr/vavr-render).
### Maven
```xml
io.vavr
vavr-render
1.0.0-SNAPSHOT
```
Ensure that your `~/.m2/settings.xml` contains the following:
```xml
allow-snapshots
true
snapshots-repo
https://oss.sonatype.org/content/repositories/snapshots
false
true
```
### Gradle
```groovy
compile("io.vavr:vavr-render:1.0.0-SNAPSHOT")
```
Ensure that your `build.gradle` contains the following:
```groovy
repositories {
mavenCentral()
maven {
url "https://oss.sonatype.org/content/repositories/snapshots"
}
}
```