From 6adc013736a869aa9923b211ac2a16e5c0c4395a Mon Sep 17 00:00:00 2001 From: Jason Penilla <11360596+jpenilla@users.noreply.github.com> Date: Tue, 28 Nov 2023 21:08:53 -0700 Subject: [PATCH] 0.1.1-SNAPSHOT & update readme --- README.md | 18 +++++++++++++----- build.gradle.kts | 2 +- 2 files changed, 14 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index ebf1cb8..edd34c1 100644 --- a/README.md +++ b/README.md @@ -2,14 +2,14 @@ reflection-remapper is a library to simplify making reflective calls, with specific support for remapped environments. ## Getting reflection-remapper -There are currently no release builds. +Releases are published to [Maven Central](https://central.sonatype.com/artifact/xyz.jpenilla/reflection-remapper). >
> Using snapshot builds > -> Snapshot builds are available on the Sonatype snapshots maven repository: `https://s01.oss.sonatype.org/content/repositories/snapshots/` +> Snapshot builds are available on the Sonatype snapshots Maven repository: `https://s01.oss.sonatype.org/content/repositories/snapshots/` > -> Consult your build tool's documentation for details on adding maven repositories to your project. +> Consult your build tool's documentation for details on adding Maven repositories to your project. >
### Gradle Kotlin DSL @@ -17,8 +17,12 @@ There are currently no release builds. > Click to show build.gradle.kts > > ```kotlin +> repositories { +> mavenCentral() +> } +> > dependencies { -> implementation("xyz.jpenilla", "reflection-remapper", "0.1.0-SNAPSHOT") +> implementation("xyz.jpenilla:reflection-remapper:0.1.0") > } > ``` > @@ -28,8 +32,12 @@ There are currently no release builds. > Click to show build.gradle > > ```groovy +> repositories { +> mavenCentral() +> } +> > dependencies { -> implementation 'xyz.jpenilla:reflection-remapper:0.1.0-SNAPSHOT' +> implementation 'xyz.jpenilla:reflection-remapper:0.1.0' > } > ``` > diff --git a/build.gradle.kts b/build.gradle.kts index 467ae07..592de64 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -4,7 +4,7 @@ plugins { } group = "xyz.jpenilla" -version = "0.1.0" +version = "0.1.1-SNAPSHOT" description = "reflection-remapper is a library to simplify making reflective calls, with specific support for remapped environments." repositories {