No description
Find a file
2023-04-04 11:56:51 -07:00
.github/workflows feat(userdev): Add experimental (for now) option for shared userdev caches (#187) 2023-04-04 11:56:51 -07:00
buildSrc Update for deprecations 2023-02-15 13:12:11 -07:00
gradle Downgrade ktlint 2023-02-15 13:12:11 -07:00
license Update license headers 2023-02-02 16:26:35 -07:00
paperweight-core Address deprecation warnings when running with Gradle 8 (#186) 2023-02-27 14:40:11 -07:00
paperweight-lib feat(userdev): Add experimental (for now) option for shared userdev caches (#187) 2023-04-04 11:56:51 -07:00
paperweight-patcher Fix order of setupServerProject and dev bundle task configuration in patcher 2023-03-03 18:02:39 -07:00
paperweight-userdev feat(userdev): Add experimental (for now) option for shared userdev caches (#187) 2023-04-04 11:56:51 -07:00
.editorconfig Update Hypo to 1.2.2 (#102) 2021-10-24 00:14:34 -07:00
.gitattributes Gradle 6.7, initial patch remap (not working) 2020-08-11 23:01:37 -07:00
.gitignore Initial work on supporting forks 2021-06-09 20:55:14 -05:00
build.gradle.kts Implement snapshot and release publishing 2021-06-14 23:49:52 -05:00
gradle.properties 1.5.4-SNAPSHOT 2023-03-03 18:35:22 -07:00
gradlew Standardize publishing (releases on plugin portal, snapshots on paper repo), combine -lib sources into plugin source jars. 2023-02-15 13:12:11 -07:00
gradlew.bat Standardize publishing (releases on plugin portal, snapshots on paper repo), combine -lib sources into plugin source jars. 2023-02-15 13:12:11 -07:00
readme.md Small readme updates (#80) 2021-09-23 23:34:33 -07:00
settings.gradle.kts Initial work on userdev 2021-08-17 15:43:36 -05:00

paperweight

paperweight consists of three Gradle plugins:

  • paperweight-core: Used to build Paper
  • paperweight-patcher: Used to create forks of Paper or other paperweight-patcher-based forks
  • paperweight-userdev: Used to develop internals plugins using Mojang mappings

How to use this for testing:

  • Install paperweight to Maven Local:
./gradlew publishToMavenLocal
  • Add mavenLocal() for plugin resolution in your test project (see the Gradle docs for more details)
  • Adjust the paperweight version in your test project
    • Local versions of paperweight will use have the -SNAPSHOT suffix in the version from gradle.properties replaced by -LOCAL-SNAPSHOT

Most output paperweight creates goes into <project-root>/.gradle/caches/paperweight

Debugging

Create a remote JVM debug run configuration in IntelliJ which connects to port 5005, then run Gradle in debug mode:

./gradlew --no-daemon -Dorg.gradle.debug=true <task>

Gradle will not start until the debugger is connected so you don't need to worry about missing a breakpoint.

Style Guide

This projects follows the opinionated ktlint linter and formatter. It uses the ktlint-gradle plugin to automatically check and format the code in this repo.

Run the format task to automatically reformat the project using ktlint - which should handle most cases - to maintain a consistent code style. Adjust any errors ktlint can't fix itself before committing.

./gradlew format

IDE Setup

It's recommended to run the ktlintApplyToIdea and addKtlintFormatGitPreCommitHook tasks to configure your IDE with ktlint style settings and to automatically format this project's code before committing:

./gradlew ktlintApplyToIdea addKtlintFormatGitPreCommitHook

This project uses many new Gradle features to make sure we're ready for Gradle 7.0 and beyond, and we don't find ourselves stuck in a bad position where it's too hard for us to update. That being said, Gradle always marks new APIs as unstable for a bit until the next major version, so you should probably disable the "Unstable API Usages" inspection in IntelliJ as well. The easiest way to do this is just find any place where an "unstable API" is used (tons in Paperweight.kt) and disable the inspection from there.