From 64ec7ca8ba1f64a2d18052fd9bf7b10f39dc701c Mon Sep 17 00:00:00 2001 From: andrewlalis Date: Fri, 22 Sep 2023 10:13:11 -0400 Subject: [PATCH] Add dependency info to the readme. --- README.md | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/README.md b/README.md index e526b16..9ed1599 100644 --- a/README.md +++ b/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 filesystem IO. +Add it to your Maven project like so: +```xml + + com.andrewlalis + record-net + 1.0.0 + +``` +or Gradle: +```groovy +implementation 'com.andrewlalis:record-net:1.0.0' +``` + ## Example ```java