mirror of
https://github.com/FabricMC/fabric.git
synced 2024-11-22 15:47:57 -05:00
6692ae6057
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
)
16 lines
476 B
Groovy
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'
|
|
])
|