A quilt mod the adds the classic roses back into the game.
Find a file
2024-12-18 23:03:14 -07:00
gradle gitignore? 2024-12-18 21:03:57 -07:00
legacy multi-module based project 2024-12-18 23:03:14 -07:00
MC1.20.6 add contact 2024-12-18 23:03:14 -07:00
.editorconfig Initial commit 2023-01-06 06:01:46 -07:00
.gitattributes Initial commit 2023-01-06 06:01:46 -07:00
.gitignore fix gitignore 2024-12-18 23:03:14 -07:00
CHANGELOG.md Fix dye recipes 2023-11-02 00:44:17 -06:00
gradle.properties gitignore? 2024-12-18 21:03:57 -07:00
gradlew gitignore? 2024-12-18 21:03:57 -07:00
gradlew.bat gitignore? 2024-12-18 21:03:57 -07:00
LICENSE.txt license to LGPL-3.0 2024-12-18 23:03:14 -07:00
README.md gitignore? 2024-12-18 21:03:57 -07:00
settings.gradle.kts move resources over 2024-12-18 23:03:14 -07:00

roses_mod

This project uses Gradle. To build and run the application, use the Gradle tool window by clicking the Gradle icon in the right-hand toolbar, or run it directly from the terminal:

  • Run ./gradlew run to build and run the application.
  • Run ./gradlew build to only build the application.
  • Run ./gradlew check to run all checks, including tests.
  • Run ./gradlew clean to clean all build outputs.

Note the usage of the Gradle Wrapper (./gradlew). This is the suggested way to use Gradle in production projects.

Learn more about the Gradle Wrapper.

Learn more about Gradle tasks.

This project follows the suggested multi-module setup and consists of the app and utils subprojects. The shared build logic was extracted to a convention plugin located in buildSrc.

This project uses a version catalog (see gradle/libs.versions.toml) to declare and version dependencies and both a build cache and a configuration cache (see gradle.properties).