@@ -105,10 +105,11 @@ BetterModel aims to be a reliable engine that provides stable, high-quality anim
105105``` kotlin
106106repositories {
107107 mavenCentral()
108+ maven(" https://maven.blamejared.com/" ) // For transitive dependency in bettermodel-fabric
109+ maven(" https://maven.nucleoid.xyz/" ) // For transitive dependency in bettermodel-fabric
108110}
109111
110112dependencies {
111- compileOnly(" io.github.toxicity188:bettermodel-api:VERSION" ) // standard api
112113 compileOnly(" io.github.toxicity188:bettermodel-bukkit-api:VERSION" ) // bukkit(spigot, paper, etc) api
113114 // modApi("io.github.toxicity188:bettermodel-fabric:VERSION") // mod(fabric)
114115}
@@ -123,10 +124,11 @@ repositories {
123124 password = YOUR_GITHUB_TOKEN
124125 }
125126 }
127+ maven(" https://maven.blamejared.com/" ) // For transitive dependency in bettermodel-fabric
128+ maven(" https://maven.nucleoid.xyz/" ) // For transitive dependency in bettermodel-fabric
126129}
127130
128131dependencies {
129- compileOnly(" io.github.toxicity188:bettermodel-api:VERSION-SNAPSHOT" ) // standard api
130132 compileOnly(" io.github.toxicity188:bettermodel-bukkit-api:VERSION-SNAPSHOT" ) // bukkit(spigot, paper, etc) api
131133 // modApi("io.github.toxicity188:bettermodel-fabric:VERSION-SNAPSHOT") // mod(fabric)
132134}
@@ -140,10 +142,11 @@ dependencies {
140142``` groovy
141143repositories {
142144 mavenCentral()
145+ maven 'https://maven.blamejared.com/' // For transitive dependency in bettermodel-fabric
146+ maven 'https://maven.nucleoid.xyz/' // For transitive dependency in bettermodel-fabric
143147}
144148
145149dependencies {
146- compileOnly 'io.github.toxicity188:bettermodel-api:VERSION' // standard api
147150 compileOnly 'io.github.toxicity188:bettermodel-bukkit-api:VERSION' // bukkit(spigot, paper, etc) api
148151 //modApi 'io.github.toxicity188:bettermodel-fabric:VERSION' // mod(fabric)
149152}
@@ -159,10 +162,11 @@ repositories {
159162 password = YOUR_GITHUB_TOKEN
160163 }
161164 }
165+ maven 'https://maven.blamejared.com/' // For transitive dependency in bettermodel-fabric
166+ maven 'https://maven.nucleoid.xyz/' // For transitive dependency in bettermodel-fabric
162167}
163168
164169dependencies {
165- compileOnly 'io.github.toxicity188:bettermodel-api:VERSION-SNAPSHOT' // standard api
166170 compileOnly 'io.github.toxicity188:bettermodel-bukkit-api:VERSION-SNAPSHOT' // bukkit(spigot, paper, etc) api
167171 //modApi 'io.github.toxicity188:bettermodel-fabric:VERSION-SNAPSHOT' // mod(fabric)
168172}
@@ -182,12 +186,6 @@ dependencies {
182186</repositories >
183187
184188<dependencies >
185- <dependency >
186- <groupId >io.github.toxicity188</groupId >
187- <artifactId >bettermodel-api</artifactId >
188- <version >VERSION</version >
189- <scope >provided</scope >
190- </dependency >
191189 <dependency >
192190 <groupId >io.github.toxicity188</groupId >
193191 <artifactId >bettermodel-bukkit-api</artifactId >
0 commit comments