mirror of
https://github.com/FabricMC/fabric.git
synced 2024-11-23 08:08:02 -05:00
17 lines
723 B
Groovy
17 lines
723 B
Groovy
archivesBaseName = "fabric-transfer-api-v1"
|
|
version = getSubprojectVersion(project, "1.0.0")
|
|
|
|
moduleDependencies(project, [
|
|
'fabric-api-base',
|
|
'fabric-api-lookup-api-v1',
|
|
'fabric-lifecycle-events-v1', // transitive dependency of API Lookup
|
|
'fabric-rendering-fluids-v1',
|
|
'fabric-textures-v0' // transitive dependency of Rendering Fluids
|
|
])
|
|
|
|
dependencies {
|
|
testmodImplementation project(path: ':fabric-object-builder-api-v1', configuration: 'dev')
|
|
testmodImplementation project(path: ':fabric-resource-loader-v0', configuration: 'dev')
|
|
testmodImplementation project(path: ':fabric-tag-extensions-v0', configuration: 'dev')
|
|
testmodImplementation project(path: ':fabric-tool-attribute-api-v1', configuration: 'dev')
|
|
}
|