fabric/fabric-screen-handler-api-v1/build.gradle
i509VCB 6692ae6057 Remove all inter-module dependencies on fabric-networking-v0 (#1291)
This migrates all uses of v0 networking to v1 api, and changes the readme to not mention networking-v0 in the example for dependencies.

This effectively makes v0 removable if it breaks in the future beyond repair. Though I expect v0 to last quite a bit longer.

(cherry picked from commit bf770ed853)
2021-02-14 17:56:36 +00:00

16 lines
476 B
Groovy

archivesBaseName = "fabric-screen-handler-api-v1"
version = getSubprojectVersion(project, "1.1.4")
minecraft {
accessWidener = file('src/main/resources/fabric-screen-handler-api-v1.accesswidener')
}
dependencies {
testmodCompile(project(path: ':fabric-object-builder-api-v1', configuration: 'dev'))
testmodRuntimeOnly(project(path: ':fabric-resource-loader-v0', configuration: 'dev'))
}
moduleDependencies(project, [
'fabric-api-base',
'fabric-networking-api-v1'
])