mirror of
https://github.com/FabricMC/fabric.git
synced 2024-11-22 23:58:02 -05:00
df3654b364
* Move deprecated modules to a sub directory. Remove deprecated modules from the default maven pom Create a new "fabric-api-legacy" bom with the deprecated modules. * Fix main "fabric" project not beign a dep for the legacy bom. * rename artifact to fabric-api-deprecated * Spotless * Use the latest version of spotless.
11 lines
342 B
Groovy
11 lines
342 B
Groovy
archivesBaseName = "fabric-models-v0"
|
|
version = getSubprojectVersion(project)
|
|
|
|
moduleDependencies(project, [
|
|
'fabric-api-base'
|
|
])
|
|
|
|
dependencies {
|
|
testmodImplementation project(path: ':fabric-rendering-v1', configuration: 'namedElements')
|
|
testmodImplementation project(path: ':fabric-resource-loader-v0', configuration: 'namedElements')
|
|
}
|