Skip to content

Commit 868e595

Browse files
committed
Add DaPorkchop's maven and use API from there
1 parent f87c07f commit 868e595

File tree

1 file changed

+8
-4
lines changed

1 file changed

+8
-4
lines changed

build.gradle.kts

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -123,6 +123,9 @@ repositories {
123123
maven {
124124
setUrl("https://files.minecraftforge.net/maven/")
125125
}
126+
maven {
127+
setUrl("https://maven.daporkchop.net/")
128+
}
126129
maven {
127130
setUrl("https://oss.sonatype.org/content/repositories/public/")
128131
}
@@ -160,13 +163,14 @@ dependencies {
160163
testImplementation("it.ozimov:java7-hamcrest-matchers:0.7.0")
161164
testImplementation("org.mockito:mockito-core:2.1.0-RC.2")
162165
testImplementation("org.spongepowered:launchwrappertestsuite:1.0-SNAPSHOT")
163-
compileOnly("io.github.opencubicchunks:cubicchunks-api:1.12.2-0.0-SNAPSHOT")
166+
compileOnly("io.github.opencubicchunks:cubicchunks-api:1.12.2-0.0.1286.0-SNAPSHOT")
164167

165168
if (hasCubicChunksBuild) {
166-
testImplementation("io.github.opencubicchunks:cubicchunks-api:1.12.2-0.0-SNAPSHOT")
167-
runtimeOnly("io.github.opencubicchunks:cubicchunks:1.12.2-0.0-SNAPSHOT")
169+
testImplementation("io.github.opencubicchunks:cubicchunks-api:1.12.2-0.0.1286.0-SNAPSHOT")
170+
runtimeOnly("io.github.opencubicchunks:cubicchunks:1.12.2-0.0.1286.0-SNAPSHOT")
168171
} else {
169-
testImplementation(fg.deobf("io.github.opencubicchunks:cubicchunks-api:1.12.2-0.0-SNAPSHOT"))
172+
testImplementation(fg.deobf("io.github.opencubicchunks:cubicchunks-api:1.12.2-0.0.1286.0-SNAPSHOT"))
173+
runtimeOnly(fg.deobf("io.github.opencubicchunks:cubicchunks:1.12.2-0.0.1286.0-SNAPSHOT"))
170174
}
171175
if (!System.getProperty("idea.sync.active", "false").toBoolean()) {
172176
annotationProcessor("org.spongepowered:mixin:0.8.4:processor")

0 commit comments

Comments
 (0)