arrow-kt libraries bundled for Minecraft

Compare changes

Choose any two refs to compare.

Changed files
+54 -13
.curseforge
+44 -8
.curseforge/README.html
··· 1 1 <h1>Marrow</h1> 2 - <p><img src="https://img.shields.io/maven-metadata/v?metadataUrl=https://maven.is-immensely.gay/releases/xyz/naomieow/marrow/maven-metadata.xml&amp;label=maven releases&amp;logo=Kotlin&amp;style=for-the-badge" alt="maven-releases-badge" width="252" height="28"> <img src="https://img.shields.io/maven-metadata/v?metadataUrl=https://maven.is-immensely.gay/nightly/xyz/naomieow/marrow/maven-metadata.xml&amp;label=maven nightly&amp;logo=Kotlin&amp;style=for-the-badge" alt="maven-nightly-badge" width="209" height="28"> <img src="https://img.shields.io/modrinth/dt/marrow?label=Modrinth&amp;logo=modrinth&amp;style=for-the-badge" alt="modrinth-badge" width="209" height="28"> <img src="https://img.shields.io/curseforge/dt/1307965?label=Curseforge&amp;logo=curseforge&amp;style=for-the-badge" alt="curseforge-badge" width="225" height="28"></p> 3 - <p>Minecraft mod that bundles <a href="https://arrow-kt.io/" target="_blank" rel="nofollow noopener">Arrow</a> for ease-of-use and installation.</p> 2 + <p> 3 + <img 4 + src="https://img.shields.io/maven-metadata/v?metadataUrl=https://maven.is-immensely.gay/releases/xyz/naomieow/marrow/maven-metadata.xml&amp;label=maven releases&amp;logo=Kotlin&amp;style=for-the-badge" 5 + alt="maven-releases-badge" 6 + width="252" 7 + height="28" 8 + /> 9 + <img 10 + src="https://img.shields.io/maven-metadata/v?metadataUrl=https://maven.is-immensely.gay/nightly/xyz/naomieow/marrow/maven-metadata.xml&amp;label=maven nightly&amp;logo=Kotlin&amp;style=for-the-badge" 11 + alt="maven-nightly-badge" 12 + width="209" 13 + height="28" 14 + /> 15 + <img 16 + src="https://img.shields.io/modrinth/dt/marrow?label=Modrinth&amp;logo=modrinth&amp;style=for-the-badge" 17 + alt="modrinth-badge" 18 + width="209" 19 + height="28" 20 + /> 21 + <img 22 + src="https://img.shields.io/curseforge/dt/1307965?label=Curseforge&amp;logo=curseforge&amp;style=for-the-badge" 23 + alt="curseforge-badge" 24 + width="225" 25 + height="28" 26 + /> 27 + </p> 28 + <p> 29 + Minecraft mod that bundles <a href="https://arrow-kt.io/" target="_blank" rel="nofollow noopener">Arrow</a> for 30 + ease-of-use and installation. 31 + </p> 4 32 <h2>Usage</h2> 5 33 <p>Simply add it as a dependency to your Gradle project like so:</p> 6 34 <h3>Groovy</h3> 7 35 <pre><code>repositories { 8 36 mavenCentral() 9 - maven("https://maven.is-immensely.gay/nightly") 37 + maven { 38 + name = 'Gay Maven' 39 + url = 'https://maven.is-immensely.gay/nightly' 40 + } 10 41 } 11 42 12 43 dependencies { 13 - def variantAttribute = Attribute.of("earth.terrarium.cloche.modLoader", String::class) 44 + def variantAttribute = Attribute.of('earth.terrarium.cloche.modLoader', String) 14 45 15 - modImplementation("xyz.naomieow:marrow:2.1.2") { 46 + // or modImplementation 47 + implementation('xyz.naomieow:marrow:2.1.2') { 16 48 attributes { 17 49 // "fabric" for fabric 18 50 // "forge" for forge 19 51 // "neoforge" for neoforge 20 - attribute(variantAttribute, "fabric") 52 + attribute variantAttribute, 'fabric' 21 53 } 22 54 } 23 55 } ··· 58 90 </code></pre> 59 91 <p>&nbsp;</p> 60 92 <h2>Versioning</h2> 61 - <p>Marrow tracks the upstream version of Arror, which is why the initial release is tagged as version <code>2.1.2</code>. If you ever find&nbsp;Marrow to be outdated, please create an issue or contact me on <a href="https://chat.lesbian.skin/" target="_blank" rel="nofollow noopener">Discord</a>.</p> 93 + <p> 94 + Marrow tracks the upstream version of Arror, which is why the initial release is tagged as version 95 + <code>2.1.2</code>. If you ever find&nbsp;Marrow to be outdated, please create an issue or contact me on 96 + <a href="https://chat.lesbian.skin/" target="_blank" rel="nofollow noopener">Discord</a>. 97 + </p> 62 98 <h2>&nbsp;</h2> 63 99 <h2>Bundled Libraries</h2> 64 100 <ul> ··· 71 107 <li><code>io.arrow-kt:arrow-collectors</code></li> 72 108 <li><code>io.arrow-kt:arrow-optics</code></li> 73 109 <li><code>io.arrow-kt:arrow-resilience</code></li> 74 - </ul> 110 + </ul>
+10 -5
README.md
··· 15 15 ```groovy 16 16 repositories { 17 17 mavenCentral() 18 - maven("https://maven.is-immensely.gay/nightly") 18 + maven { 19 + name = 'Gay Maven' 20 + url = 'https://maven.is-immensely.gay/nightly' 21 + } 19 22 } 20 23 21 24 dependencies { 22 - def variantAttribute = Attribute.of("earth.terrarium.cloche.modLoader", String::class) 25 + def variantAttribute = Attribute.of('earth.terrarium.cloche.modLoader', String) 23 26 24 - modImplementation("xyz.naomieow:marrow:2.1.2") { 27 + // or modImplementation 28 + implementation('xyz.naomieow:marrow:2.1.2') { 25 29 attributes { 26 30 // "fabric" for fabric 27 31 // "forge" for forge 28 32 // "neoforge" for neoforge 29 - attribute(variantAttribute, "fabric") 33 + attribute variantAttribute, 'fabric' 30 34 } 31 35 } 32 36 } ··· 47 51 dependencies { 48 52 val variantAttribute = Attribute.of("earth.terrarium.cloche.modLoader", String::class.java) 49 53 50 - modImplementation("xyz.naomieow:marrow:2.1.2") { 54 + // or modImplementation 55 + implementation("xyz.naomieow:marrow:2.1.2") { 51 56 attributes { 52 57 // "fabric" for fabric 53 58 // "forge" for forge