mirror of
https://github.com/FabricMC/fabric.git
synced 2024-11-23 08:08:02 -05:00
d2f76b0fdf
* Mining Level API, part 1 * Fix incorrect netherite mining level in MiningLevelManager docs * Add some format checks in dynamic mining level tag checking * Add mining level API test mod * Grammar * Add cursed basic support for the tool attribute api * Fix tool attribute JD * Add proper compat for tool attribute api Also fixes the remaining bugs in it! * Update license headers * stuff * better comments * more test mod work * more * Fix test mod * i'm done with this module * Address some code review things * Use Reference2IntMap (basically IdentityHashMap for int values) * Prefix mixin handlers with fabric$ * Add missing license header * Update fabric-object-builder-api-v1/src/main/java/net/fabricmc/fabric/api/object/builder/v1/block/FabricBlockSettings.java * Resolve liach's comment * Update to use TagFactory
14 lines
505 B
Groovy
14 lines
505 B
Groovy
archivesBaseName = "fabric-tool-attribute-api-v1"
|
|
version = getSubprojectVersion(project, "1.2.12")
|
|
|
|
dependencies {
|
|
testmodImplementation project(path: ':fabric-object-builder-api-v1', configuration: 'dev')
|
|
testmodImplementation project(path: ':fabric-lifecycle-events-v1', configuration: 'dev')
|
|
testmodImplementation project(path: ':fabric-resource-loader-v0', configuration: 'dev')
|
|
}
|
|
|
|
moduleDependencies(project, [
|
|
'fabric-api-base',
|
|
'fabric-mining-level-api-v1',
|
|
'fabric-tag-extensions-v0'
|
|
])
|