mirror of
https://github.com/FabricMC/fabric.git
synced 2024-11-23 08:08:02 -05:00
0d7a4ee070
* Add item and "fluid item" APIs * Rework ContainerItemContext javadoc * Rework the Inventory wrapper API * Cleanup inventory wrapper implementation, add < 64 max stack count test, separate tests better * Fix Inventory wrapper not limiting the stack count correctly (thanks @lilybeevee!) * Rewrite inventory wrapper, add SingleStackStorage base implementation * Composters * SingleStackStorage adjustements * Bump version * Move icon to correct location. Closes #1565 * Bump version * Remove composter implementation (it's broken), slight renames * Fix SidedInventory extract * Bump version * Don't use MAVEN_USERNAME if it's not specified * Add comparator output, add missing markDirty calls, fix tests * Bump version * Add SingleVariantStorage, deprecate SingleFluidStorage, definalize a few things, make sure markDirty() is only called once per successful outer transaction in inventory wrappers * Add composter support * Move EmptyFluidView to BlankVariantView, update README and package-info * Bump version * Key -> variant * Add Transaction#openNested(@Nullable TransactionContext) * Add SingleSlotContainerItemContext * Bump prerelease version * Remove useless comment * Remove ContainerItemContext#getWorld * Bump prerelease version * Add StorageUtil#findExtractableContent and ContainerItemContext#withInitial * Bump prerelease version
17 lines
730 B
Groovy
17 lines
730 B
Groovy
archivesBaseName = "fabric-transfer-api-v1"
|
|
version = getSubprojectVersion(project, "1.1.0-pre.09")
|
|
|
|
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')
|
|
}
|