Add dependency info to the readme.
This commit is contained in:
parent
d88ce58e6e
commit
64ec7ca8ba
13
README.md
13
README.md
|
@ -3,6 +3,19 @@ Simple, performant message library for Java, using records. It allows you to
|
||||||
serialize and deserialize records and their contents for use in network or
|
serialize and deserialize records and their contents for use in network or
|
||||||
filesystem IO.
|
filesystem IO.
|
||||||
|
|
||||||
|
Add it to your Maven project like so:
|
||||||
|
```xml
|
||||||
|
<dependency>
|
||||||
|
<groupId>com.andrewlalis</groupId>
|
||||||
|
<artifactId>record-net</artifactId>
|
||||||
|
<version>1.0.0</version>
|
||||||
|
</dependency>
|
||||||
|
```
|
||||||
|
or Gradle:
|
||||||
|
```groovy
|
||||||
|
implementation 'com.andrewlalis:record-net:1.0.0'
|
||||||
|
```
|
||||||
|
|
||||||
## Example
|
## Example
|
||||||
|
|
||||||
```java
|
```java
|
||||||
|
|
Loading…
Reference in New Issue