fabric/fabric-networking-api-v1/build.gradle
Player f71b366fb1
Update command registration API to reflect 1.19 vanilla changes (#2227)
* Update command registration API to reflect vanilla changes

* Allow module versions in impl+mixin packages

* Use v2 module, keeping v1 for server commands at least

* update, address review

Co-authored-by: modmuss50 <modmuss50@gmail.com>
2022-05-20 18:39:10 +01:00

12 lines
452 B
Groovy

archivesBaseName = "fabric-networking-api-v1"
version = getSubprojectVersion(project)
moduleDependencies(project, [
'fabric-api-base'
])
dependencies {
testmodImplementation project(path: ':fabric-command-api-v2', configuration: 'namedElements')
testmodImplementation project(path: ':fabric-lifecycle-events-v1', configuration: 'namedElements')
testmodImplementation project(path: ':fabric-key-binding-api-v1', configuration: 'namedElements')
}