Update fabric.mod.json and fix Pagination name
All checks were successful
/ build (17, ubuntu-latest) (pull_request) Successful in 5m18s

This commit is contained in:
Quentin Legot 2023-06-13 18:03:13 +02:00
parent 780c0d650c
commit 7b054ed935
3 changed files with 7 additions and 2 deletions

View File

@ -2,7 +2,7 @@
"schemaVersion": 1, "schemaVersion": 1,
"id": "toolbox-pagination", "id": "toolbox-pagination",
"version": "${version}", "version": "${version}",
"name": "Task", "name": "Pagination",
"description": "A mod to use to paginate long result to player in chat", "description": "A mod to use to paginate long result to player in chat",
"authors": [ "authors": [
"Altarik" "Altarik"

View File

@ -92,6 +92,7 @@ allprojects {
dependencies { dependencies {
include subprojects.collect { project -> project } include subprojects.collect { project -> project }
implementation subprojects.collect { project -> project }
} }
/*jar { /*jar {

View File

@ -20,7 +20,11 @@
"fabricloader": "^0.14.12", "fabricloader": "^0.14.12",
"fabric-api": "*", "fabric-api": "*",
"minecraft": "1.19.3", "minecraft": "1.19.3",
"java": ">=17" "java": ">=17",
"toolbox-core": "${version}",
"toolbox-database": "${version}",
"toolbox-pagination": "${version}",
"toolbox-task": "${version}"
} }
} }