Skip to content

Commit

Permalink
0.1.1-SNAPSHOT & update readme
Browse files Browse the repository at this point in the history
  • Loading branch information
jpenilla committed Nov 29, 2023
1 parent a20e494 commit 6adc013
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 6 deletions.
18 changes: 13 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,23 +2,27 @@
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).

> <details open>
> <summary>Using snapshot builds</summary>
>
> 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.
> </details>
### Gradle Kotlin DSL
> <details open>
> <summary>Click to show build.gradle.kts</summary>
>
> ```kotlin
> repositories {
> mavenCentral()
> }
>
> dependencies {
> implementation("xyz.jpenilla", "reflection-remapper", "0.1.0-SNAPSHOT")
> implementation("xyz.jpenilla:reflection-remapper:0.1.0")
> }
> ```
> </details>
Expand All @@ -28,8 +32,12 @@ There are currently no release builds.
> <summary>Click to show build.gradle</summary>
>
> ```groovy
> repositories {
> mavenCentral()
> }
>
> dependencies {
> implementation 'xyz.jpenilla:reflection-remapper:0.1.0-SNAPSHOT'
> implementation 'xyz.jpenilla:reflection-remapper:0.1.0'
> }
> ```
> </details>
Expand Down
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down

0 comments on commit 6adc013

Please sign in to comment.