Skip to content

Commit 6adc013

Browse files
committed
0.1.1-SNAPSHOT & update readme
1 parent a20e494 commit 6adc013

File tree

2 files changed

+14
-6
lines changed

2 files changed

+14
-6
lines changed

README.md

Lines changed: 13 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,23 +2,27 @@
22
reflection-remapper is a library to simplify making reflective calls, with specific support for remapped environments.
33

44
## Getting reflection-remapper
5-
There are currently no release builds.
5+
Releases are published to [Maven Central](https://central.sonatype.com/artifact/xyz.jpenilla/reflection-remapper).
66

77
> <details open>
88
> <summary>Using snapshot builds</summary>
99
>
10-
> Snapshot builds are available on the Sonatype snapshots maven repository: `https://s01.oss.sonatype.org/content/repositories/snapshots/`
10+
> Snapshot builds are available on the Sonatype snapshots Maven repository: `https://s01.oss.sonatype.org/content/repositories/snapshots/`
1111
>
12-
> Consult your build tool's documentation for details on adding maven repositories to your project.
12+
> Consult your build tool's documentation for details on adding Maven repositories to your project.
1313
> </details>
1414
1515
### Gradle Kotlin DSL
1616
> <details open>
1717
> <summary>Click to show build.gradle.kts</summary>
1818
>
1919
> ```kotlin
20+
> repositories {
21+
> mavenCentral()
22+
> }
23+
>
2024
> dependencies {
21-
> implementation("xyz.jpenilla", "reflection-remapper", "0.1.0-SNAPSHOT")
25+
> implementation("xyz.jpenilla:reflection-remapper:0.1.0")
2226
> }
2327
> ```
2428
> </details>
@@ -28,8 +32,12 @@ There are currently no release builds.
2832
> <summary>Click to show build.gradle</summary>
2933
>
3034
> ```groovy
35+
> repositories {
36+
> mavenCentral()
37+
> }
38+
>
3139
> dependencies {
32-
> implementation 'xyz.jpenilla:reflection-remapper:0.1.0-SNAPSHOT'
40+
> implementation 'xyz.jpenilla:reflection-remapper:0.1.0'
3341
> }
3442
> ```
3543
> </details>

build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ plugins {
44
}
55

66
group = "xyz.jpenilla"
7-
version = "0.1.0"
7+
version = "0.1.1-SNAPSHOT"
88
description = "reflection-remapper is a library to simplify making reflective calls, with specific support for remapped environments."
99

1010
repositories {

0 commit comments

Comments
 (0)