mirror of
https://github.com/FabricMC/fabric.git
synced 2025-04-19 10:24:39 -04:00
* Move client auto tests to new module fabric-client-gametest-api-v1 * Fix run prod Gradle tasks * Rename remaining references to client auto-tests * Switch client gametests to using entrypoints * Disable input and cursor grabbing * Remove FabricClientTestHelper moving most of it into the context. Add the ability to simulate key and mouse inputs * Rename and document input methods * Rename client gametest github action * Fix tryClickScreenButtonImpl for buttons inside layout widgets * Address review comments and repackage client gametest test * Delete wrong reference to TitleScreenAccessor. Thanks mcdev * Address review comments * Clean up default game options * Improve documentation * Remove module dependencies --------- Co-authored-by: modmuss50 <modmuss50@gmail.com>
77 lines
2.1 KiB
Groovy
77 lines
2.1 KiB
Groovy
pluginManagement {
|
|
repositories {
|
|
maven {
|
|
name = 'Fabric'
|
|
url = 'https://maven.fabricmc.net/'
|
|
}
|
|
gradlePluginPortal()
|
|
}
|
|
}
|
|
|
|
rootProject.name = "fabric-api"
|
|
|
|
include 'fabric-api-bom'
|
|
include 'fabric-api-catalog'
|
|
|
|
def focus = new File('focus.txt')
|
|
|
|
if (focus.exists()) {
|
|
focus.eachLine {
|
|
include it
|
|
}
|
|
|
|
return // Skip the rest of the includes
|
|
}
|
|
|
|
include 'fabric-api-base'
|
|
|
|
include 'fabric-api-lookup-api-v1'
|
|
include 'fabric-biome-api-v1'
|
|
include 'fabric-block-api-v1'
|
|
include 'fabric-block-view-api-v2'
|
|
include 'fabric-blockrenderlayer-v1'
|
|
include 'fabric-client-gametest-api-v1'
|
|
include 'fabric-client-tags-api-v1'
|
|
include 'fabric-command-api-v2'
|
|
include 'fabric-content-registries-v0'
|
|
include 'fabric-convention-tags-v2'
|
|
include 'fabric-crash-report-info-v1'
|
|
include 'fabric-data-attachment-api-v1'
|
|
include 'fabric-data-generation-api-v1'
|
|
include 'fabric-dimensions-v1'
|
|
include 'fabric-entity-events-v1'
|
|
include 'fabric-events-interaction-v0'
|
|
include 'fabric-game-rule-api-v1'
|
|
include 'fabric-gametest-api-v1'
|
|
include 'fabric-item-api-v1'
|
|
include 'fabric-item-group-api-v1'
|
|
include 'fabric-key-binding-api-v1'
|
|
include 'fabric-lifecycle-events-v1'
|
|
include 'fabric-loot-api-v3'
|
|
include 'fabric-message-api-v1'
|
|
include 'fabric-model-loading-api-v1'
|
|
include 'fabric-networking-api-v1'
|
|
include 'fabric-object-builder-api-v1'
|
|
include 'fabric-particles-v1'
|
|
include 'fabric-recipe-api-v1'
|
|
include 'fabric-registry-sync-v0'
|
|
include 'fabric-renderer-api-v1'
|
|
include 'fabric-renderer-indigo'
|
|
include 'fabric-rendering-fluids-v1'
|
|
include 'fabric-rendering-v1'
|
|
include 'fabric-resource-conditions-api-v1'
|
|
include 'fabric-resource-loader-v0'
|
|
include 'fabric-screen-api-v1'
|
|
include 'fabric-screen-handler-api-v1'
|
|
include 'fabric-sound-api-v1'
|
|
include 'fabric-tag-api-v1'
|
|
include 'fabric-transfer-api-v1'
|
|
include 'fabric-transitive-access-wideners-v1'
|
|
|
|
include 'deprecated'
|
|
include 'deprecated:fabric-command-api-v1'
|
|
include 'deprecated:fabric-commands-v0'
|
|
include 'deprecated:fabric-convention-tags-v1'
|
|
include 'deprecated:fabric-keybindings-v0'
|
|
include 'deprecated:fabric-loot-api-v2'
|
|
include 'deprecated:fabric-rendering-data-attachment-v1'
|