fabric: update loom to 0.6-SNAPSHOT
This commit is contained in:
parent
5c7f2ffaab
commit
c01445dd1e
1 changed files with 5 additions and 5 deletions
|
|
@ -1,7 +1,7 @@
|
||||||
import net.ltgt.gradle.errorprone.errorprone
|
import net.ltgt.gradle.errorprone.errorprone
|
||||||
|
|
||||||
plugins {
|
plugins {
|
||||||
id("fabric-loom") version "0.5-SNAPSHOT"
|
id("fabric-loom") version "0.6-SNAPSHOT"
|
||||||
}
|
}
|
||||||
|
|
||||||
/* set up a testmod source set */
|
/* set up a testmod source set */
|
||||||
|
|
@ -51,10 +51,10 @@ dependencies {
|
||||||
modImplementation(fabricApi.module("fabric-command-api-v1", Versions.fabricApi))
|
modImplementation(fabricApi.module("fabric-command-api-v1", Versions.fabricApi))
|
||||||
|
|
||||||
api(include(project(":cloud-core"))!!)
|
api(include(project(":cloud-core"))!!)
|
||||||
implementation(include(project(":cloud-brigadier"))!!)
|
api(include(project(":cloud-brigadier"))!!)
|
||||||
|
api(include(project(":cloud-services"))!!)
|
||||||
|
|
||||||
include(project(":cloud-services"))
|
api(include("io.leangen.geantyref", "geantyref", Versions.geantyref))
|
||||||
include("io.leangen.geantyref", "geantyref", Versions.geantyref)
|
|
||||||
}
|
}
|
||||||
|
|
||||||
indra {
|
indra {
|
||||||
|
|
@ -73,7 +73,7 @@ indra {
|
||||||
pom {
|
pom {
|
||||||
withXml {
|
withXml {
|
||||||
val dependencies = asNode().appendNode("dependencies")
|
val dependencies = asNode().appendNode("dependencies")
|
||||||
sequenceOf("brigadier", "core").forEach {
|
sequenceOf("brigadier", "core", "services").forEach {
|
||||||
val depNode = dependencies.appendNode("dependency")
|
val depNode = dependencies.appendNode("dependency")
|
||||||
depNode.appendNode("groupId", project.group)
|
depNode.appendNode("groupId", project.group)
|
||||||
depNode.appendNode("artifactId", "cloud-$it")
|
depNode.appendNode("artifactId", "cloud-$it")
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue