fabric/fabric-renderer-api-v1/build.gradle
i509VCB 6a8b6a39c8 Create a simple renderer api testmod (#1295)
* Create a simple renderer api testmod

* Update fabric-renderer-api-v1/src/testmod/java/net/fabricmc/fabric/test/renderer/simple/client/RendererClientTest.java

Co-authored-by: liach <7806504+liach@users.noreply.github.com>

Co-authored-by: liach <7806504+liach@users.noreply.github.com>
(cherry picked from commit b0e4dde51b)
2021-04-14 19:29:28 +01:00

14 lines
587 B
Groovy

archivesBaseName = "fabric-renderer-api-v1"
version = getSubprojectVersion(project, "0.4.1")
moduleDependencies(project, [
'fabric-api-base'
])
dependencies {
testmodCompile project(path: ':fabric-blockrenderlayer-v1', configuration: 'dev')
testmodCompile project(path: ':fabric-models-v0', configuration: 'dev')
testmodCompile project(path: ':fabric-networking-blockentity-v0', configuration: 'dev')
testmodCompile project(path: ':fabric-object-builder-api-v1', configuration: 'dev')
testmodCompile project(path: ':fabric-rendering-data-attachment-v1', configuration: 'dev')
}