Skip to content

Commit

Permalink
added installation readme
Browse files Browse the repository at this point in the history
  • Loading branch information
cansik committed May 2, 2020
1 parent c04a19d commit 5405468
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,29 @@ Art-Net DMX over IP library for Java and Processing. This library adds a lot of

## Installation

I recommend to install it from maven central. Otherwise it is also possible to use [github packages](packages), [jitpack.io](https://jitpack.io/#cansik/artnet4j) or just the [binary download](releases).

### Maven

```xml
<dependency>
<groupId>ch.bildspur</groupId>
<artifactId>artnet4j</artifactId>
<version>0.6.2</version>
</dependency>
```

### Gradle

```groovy
repositories {
mavenCentral()
}
dependencies {
compile 'ch.bildspur:artnet4j:0.6.2'
}
```

## Examples
The library adds a new class called `ArtNetClient`, which contains easy access to the underlaying Art-Net implementation.
Expand Down

0 comments on commit 5405468

Please sign in to comment.