File tree Expand file tree Collapse file tree 2 files changed +14
-6
lines changed
Expand file tree Collapse file tree 2 files changed +14
-6
lines changed Original file line number Diff line number Diff line change 22reflection-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>
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ plugins {
44}
55
66group = " xyz.jpenilla"
7- version = " 0.1.0 "
7+ version = " 0.1.1-SNAPSHOT "
88description = " reflection-remapper is a library to simplify making reflective calls, with specific support for remapped environments."
99
1010repositories {
You can’t perform that action at this time.
0 commit comments