├── .editorconfig ├── .gitattributes ├── .github └── workflows │ ├── deploy-snapshot.yml │ ├── deploy.yml │ └── test.yml ├── .gitignore ├── gradle.properties ├── gradle ├── libs.versions.toml └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── license ├── LGPLv2.1.txt └── copyright.txt ├── paperweight-core ├── build.gradle.kts └── src │ ├── main │ ├── kotlin │ │ └── io │ │ │ └── papermc │ │ │ └── paperweight │ │ │ ├── PaperweightSourceGeneratorHelper.kt │ │ │ ├── checkstyle │ │ │ ├── JavadocTag.kt │ │ │ ├── PaperCheckstyle.kt │ │ │ ├── PaperCheckstyleExt.kt │ │ │ ├── PaperCheckstylePlugin.kt │ │ │ └── PaperCheckstyleTask.kt │ │ │ ├── core │ │ │ ├── PaperweightCore.kt │ │ │ ├── extension │ │ │ │ ├── ForkConfig.kt │ │ │ │ ├── PaperExtension.kt │ │ │ │ ├── PaperweightCoreExtension.kt │ │ │ │ ├── PaperweightSourceGeneratorExt.kt │ │ │ │ ├── SpigotExtension.kt │ │ │ │ ├── UpdatingMinecraftExtension.kt │ │ │ │ └── UpstreamConfig.kt │ │ │ ├── taskcontainers │ │ │ │ ├── AllTasks.kt │ │ │ │ ├── CoreTasks.kt │ │ │ │ ├── DevBundleTasks.kt │ │ │ │ ├── InitialTasks.kt │ │ │ │ ├── MinecraftPatchingTasks.kt │ │ │ │ ├── PaperclipTasks.kt │ │ │ │ ├── PatchingTasks.kt │ │ │ │ ├── SpigotTasks.kt │ │ │ │ └── UpstreamConfigTasks.kt │ │ │ ├── tasks │ │ │ │ ├── CheckoutRepo.kt │ │ │ │ ├── ExtractMinecraftSources.kt │ │ │ │ ├── FilterRepo.kt │ │ │ │ ├── ImportLibraryFiles.kt │ │ │ │ ├── RunNestedBuild.kt │ │ │ │ ├── SetupForkMinecraftSources.kt │ │ │ │ ├── SetupMinecraftSources.kt │ │ │ │ ├── SetupPaperScript.kt │ │ │ │ ├── patching │ │ │ │ │ ├── ApplyFeaturePatches.kt │ │ │ │ │ ├── ApplyFilePatches.kt │ │ │ │ │ ├── ApplyFilePatchesFuzzy.kt │ │ │ │ │ ├── ApplySingleFilePatches.kt │ │ │ │ │ ├── FixupFilePatches.kt │ │ │ │ │ ├── RebuildFilePatches.kt │ │ │ │ │ └── RebuildSingleFilePatches.kt │ │ │ │ └── patchroulette │ │ │ │ │ ├── AbstractPatchRouletteTask.kt │ │ │ │ │ ├── ClearPatchRouletteList.kt │ │ │ │ │ ├── PatchRouletteApply.kt │ │ │ │ │ ├── PatchRouletteCancel.kt │ │ │ │ │ ├── PatchRouletteFinish.kt │ │ │ │ │ ├── PatchRouletteTasks.kt │ │ │ │ │ ├── PushPatchRouletteList.kt │ │ │ │ │ └── ShowPatchRouletteList.kt │ │ │ └── util │ │ │ │ ├── ApplySourceATs.kt │ │ │ │ ├── project-util.kt │ │ │ │ └── utils.kt │ │ │ └── patcher │ │ │ ├── PaperweightPatcher.kt │ │ │ └── extension │ │ │ └── PaperweightPatcherExtension.kt │ └── resources │ │ └── META-INF │ │ └── gradle-plugins │ │ ├── io.papermc.paperweight.paper-checkstyle.properties │ │ └── io.papermc.paperweight.source-generator.properties │ └── test │ ├── kotlin │ └── io │ │ └── papermc │ │ └── paperweight │ │ ├── FunctionalTest.kt │ │ ├── core │ │ ├── tasks │ │ │ ├── patching │ │ │ │ ├── ApplyFilePatchesTest.kt │ │ │ │ └── RebuildFilePatchesTest.kt │ │ │ └── patchroulette │ │ │ │ └── PatchRouletteApplyTest.kt │ │ └── util │ │ │ └── ApplySourceATsTest.kt │ │ └── util.kt │ └── resources │ ├── apply_patches │ ├── input │ │ ├── base │ │ │ └── Test.java │ │ └── patches │ │ │ └── Test.java.patch │ └── output │ │ └── source │ │ └── Test.java │ ├── fake_mache │ ├── mache.json │ └── patches │ │ └── Test.java.patch │ ├── fake_mojang │ ├── bundle │ │ ├── META-INF │ │ │ ├── libraries.list │ │ │ └── versions.list │ │ └── version.json │ ├── mappings.txt │ ├── server │ │ ├── Test.java │ │ └── test.json │ ├── version.json │ └── version_manifest.json │ └── functional_test │ ├── .editorconfig │ ├── .gitignore │ ├── build-data │ ├── expected.at │ ├── fake.at │ └── paper.at │ ├── build.gradle │ ├── fake-patches │ ├── expected │ │ ├── 0001-Feature.patch │ │ └── Test.java.patch │ ├── features │ │ └── 0001-Feature.patch │ ├── resources │ │ └── test.json.patch │ └── sources │ │ └── Test.java.patch │ ├── lib-patches │ ├── 0002-Remove-rotten-apples.patch │ ├── Main.java │ ├── dev-imports.txt │ └── org │ │ └── alcibiade │ │ └── asciiart │ │ └── widget │ │ └── PictureWidget.java.patch │ ├── settings.gradle │ ├── test-api │ └── build.gradle │ └── test-server │ ├── build.gradle │ └── patches │ ├── features │ └── 0001-something.patch │ ├── resources │ └── version.json.patch │ └── sources │ └── net │ └── minecraft │ └── core │ └── Rotations.java.patch ├── paperweight-lib ├── build.gradle.kts └── src │ ├── main │ ├── kotlin-templates │ │ └── io │ │ │ └── papermc │ │ │ └── paperweight │ │ │ └── util │ │ │ └── LibraryVersions.kt.peb │ ├── kotlin │ │ └── io │ │ │ └── papermc │ │ │ └── paperweight │ │ │ ├── DownloadService.kt │ │ │ ├── PaperweightException.kt │ │ │ ├── attribute │ │ │ ├── DevBundleOutput.kt │ │ │ └── MacheOutput.kt │ │ │ ├── tasks │ │ │ ├── ApplyAccessTransform.kt │ │ │ ├── BaseTask.kt │ │ │ ├── CleanupMappings.kt │ │ │ ├── CloneRepo.kt │ │ │ ├── CollectATsFromPatches.kt │ │ │ ├── ControllableOutputTask.kt │ │ │ ├── CreateBundlerJar.kt │ │ │ ├── CreateDiffOutput.kt │ │ │ ├── CreatePaperclipJar.kt │ │ │ ├── DownloadServerJar.kt │ │ │ ├── ExtractFromBundler.kt │ │ │ ├── FilterJar.kt │ │ │ ├── FixJarForReobf.kt │ │ │ ├── GenerateDevBundle.kt │ │ │ ├── GenerateMappings.kt │ │ │ ├── GenerateRelocatedReobfMappings.kt │ │ │ ├── GenerateReobfMappings.kt │ │ │ ├── GenerateSpigotMappings.kt │ │ │ ├── IncludeMappings.kt │ │ │ ├── MergeAccessTransforms.kt │ │ │ ├── PatchMappings.kt │ │ │ ├── RebuildGitPatches.kt │ │ │ ├── RelocateClassNameConstants.kt │ │ │ ├── RemapJar.kt │ │ │ ├── ScanJar.kt │ │ │ ├── ScanJarForBadCalls.kt │ │ │ ├── ScanJarForOldGeneratedCode.kt │ │ │ ├── SpigotRemapJar.kt │ │ │ ├── UnpackSpigotBuildData.kt │ │ │ ├── ZippedTask.kt │ │ │ ├── download-task.kt │ │ │ ├── java-launcher.kt │ │ │ └── mache │ │ │ │ ├── DecompileJar.kt │ │ │ │ └── RunCodebook.kt │ │ │ └── util │ │ │ ├── ClassNodeCache.kt │ │ │ ├── ClassNodeCacheImpl.kt │ │ │ ├── JarProcessing.kt │ │ │ ├── MappingFormats.kt │ │ │ ├── asm.kt │ │ │ ├── at.kt │ │ │ ├── constants │ │ │ └── constants.kt │ │ │ ├── data │ │ │ ├── BuildDataInfo.kt │ │ │ ├── FileEntry.kt │ │ │ ├── LibraryChange.kt │ │ │ ├── MavenArtifact.kt │ │ │ ├── MinecraftManifest.kt │ │ │ ├── ModuleId.kt │ │ │ └── mache │ │ │ │ ├── MacheAdditionalDependencies.kt │ │ │ │ ├── MacheDependencies.kt │ │ │ │ ├── MacheMeta.kt │ │ │ │ ├── MacheRepository.kt │ │ │ │ └── MavenArtifact.kt │ │ │ ├── dependencies.kt │ │ │ ├── durations.kt │ │ │ ├── extensions.kt │ │ │ ├── file-lock.kt │ │ │ ├── file.kt │ │ │ ├── filter-jar.kt │ │ │ ├── git.kt │ │ │ ├── jar-runner.kt │ │ │ ├── nio.kt │ │ │ ├── relocation.kt │ │ │ ├── utils.kt │ │ │ └── zip.kt │ └── resources │ │ └── post-rewrite.sh │ └── test │ ├── kotlin │ └── io │ │ └── papermc │ │ └── paperweight │ │ ├── tasks │ │ ├── ApplyAccessTransformTest.kt │ │ └── TaskTest.kt │ │ └── util │ │ ├── ATTest.kt │ │ └── FileUtilsTest.kt │ └── resources │ ├── apply_access_transform │ ├── input │ │ ├── Test.java │ │ └── ats.at │ └── output │ │ └── output.javap │ ├── apply_source_at │ ├── input │ │ ├── Test.java │ │ ├── Unrelated.java │ │ └── ats.at │ └── output │ │ ├── Test.java │ │ └── Unrelated.java │ └── rebuild_patches │ ├── input │ ├── ats.at │ ├── base │ │ └── Test.java │ └── source │ │ └── Test.java │ └── output │ ├── ats.at │ ├── base │ └── Test.java │ ├── patches │ └── Test.java.patch │ └── source │ └── Test.java ├── paperweight-userdev ├── build.gradle.kts └── src │ ├── main │ └── kotlin │ │ └── io │ │ └── papermc │ │ └── paperweight │ │ └── userdev │ │ ├── PaperweightUser.kt │ │ ├── PaperweightUserDependenciesExtension.kt │ │ ├── PaperweightUserExtension.kt │ │ ├── ReobfArtifactConfiguration.kt │ │ ├── attribute │ │ └── Obfuscation.kt │ │ └── internal │ │ ├── JunitExclusionRule.kt │ │ ├── action │ │ ├── CacheManager.kt │ │ ├── WorkDispatcher.kt │ │ ├── WorkDispatcherImpl.kt │ │ ├── WorkGraph.kt │ │ └── values.kt │ │ ├── setup │ │ ├── DevBundles.kt │ │ ├── SetupHandler.kt │ │ ├── SetupHandlerImpl.kt │ │ ├── UserdevSetup.kt │ │ ├── UserdevSetupTask.kt │ │ ├── action │ │ │ ├── AccessTransformMinecraftAction.kt │ │ │ ├── ApplyDevBundlePatchesAction.kt │ │ │ ├── DecompileMinecraftAction.kt │ │ │ ├── ExtractFromBundlerAction.kt │ │ │ ├── FilterPaperShadowJarAction.kt │ │ │ ├── FilterVanillaJarAction.kt │ │ │ ├── FixMinecraftJarAction.kt │ │ │ ├── GenerateMappingsAction.kt │ │ │ ├── RemapMinecraftAction.kt │ │ │ ├── RunCodebookAction.kt │ │ │ ├── RunPaperclipAction.kt │ │ │ ├── SetupMacheSourcesAction.kt │ │ │ └── VanillaServerDownloads.kt │ │ ├── v2 │ │ │ ├── DevBundleV2.kt │ │ │ └── SetupHandlerImplV2.kt │ │ └── v5 │ │ │ ├── DevBundleV5.kt │ │ │ └── SetupHandlerImplV5.kt │ │ └── util │ │ ├── FixJar.kt │ │ ├── ParameterAnnotationFixer.kt │ │ └── utils.kt │ └── test │ └── kotlin │ └── io │ └── papermc │ └── paperweight │ └── userdev │ ├── PaperweightUserTest.kt │ └── internal │ └── action │ └── WorkDispatcherTest.kt ├── readme.md ├── renovate.json └── settings.gradle.kts /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/paperweight/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/paperweight/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/deploy-snapshot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/paperweight/HEAD/.github/workflows/deploy-snapshot.yml -------------------------------------------------------------------------------- /.github/workflows/deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/paperweight/HEAD/.github/workflows/deploy.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/paperweight/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/paperweight/HEAD/.gitignore -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/paperweight/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/libs.versions.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/paperweight/HEAD/gradle/libs.versions.toml -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/paperweight/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/paperweight/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/paperweight/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/paperweight/HEAD/gradlew.bat -------------------------------------------------------------------------------- /license/LGPLv2.1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/paperweight/HEAD/license/LGPLv2.1.txt -------------------------------------------------------------------------------- /license/copyright.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/paperweight/HEAD/license/copyright.txt -------------------------------------------------------------------------------- /paperweight-core/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/paperweight/HEAD/paperweight-core/build.gradle.kts -------------------------------------------------------------------------------- /paperweight-core/src/main/kotlin/io/papermc/paperweight/PaperweightSourceGeneratorHelper.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/paperweight/HEAD/paperweight-core/src/main/kotlin/io/papermc/paperweight/PaperweightSourceGeneratorHelper.kt -------------------------------------------------------------------------------- /paperweight-core/src/main/kotlin/io/papermc/paperweight/checkstyle/JavadocTag.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/paperweight/HEAD/paperweight-core/src/main/kotlin/io/papermc/paperweight/checkstyle/JavadocTag.kt -------------------------------------------------------------------------------- /paperweight-core/src/main/kotlin/io/papermc/paperweight/checkstyle/PaperCheckstyle.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/paperweight/HEAD/paperweight-core/src/main/kotlin/io/papermc/paperweight/checkstyle/PaperCheckstyle.kt -------------------------------------------------------------------------------- /paperweight-core/src/main/kotlin/io/papermc/paperweight/checkstyle/PaperCheckstyleExt.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/paperweight/HEAD/paperweight-core/src/main/kotlin/io/papermc/paperweight/checkstyle/PaperCheckstyleExt.kt -------------------------------------------------------------------------------- /paperweight-core/src/main/kotlin/io/papermc/paperweight/checkstyle/PaperCheckstylePlugin.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/paperweight/HEAD/paperweight-core/src/main/kotlin/io/papermc/paperweight/checkstyle/PaperCheckstylePlugin.kt -------------------------------------------------------------------------------- /paperweight-core/src/main/kotlin/io/papermc/paperweight/checkstyle/PaperCheckstyleTask.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/paperweight/HEAD/paperweight-core/src/main/kotlin/io/papermc/paperweight/checkstyle/PaperCheckstyleTask.kt -------------------------------------------------------------------------------- /paperweight-core/src/main/kotlin/io/papermc/paperweight/core/PaperweightCore.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/paperweight/HEAD/paperweight-core/src/main/kotlin/io/papermc/paperweight/core/PaperweightCore.kt -------------------------------------------------------------------------------- /paperweight-core/src/main/kotlin/io/papermc/paperweight/core/extension/ForkConfig.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/paperweight/HEAD/paperweight-core/src/main/kotlin/io/papermc/paperweight/core/extension/ForkConfig.kt -------------------------------------------------------------------------------- /paperweight-core/src/main/kotlin/io/papermc/paperweight/core/extension/PaperExtension.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/paperweight/HEAD/paperweight-core/src/main/kotlin/io/papermc/paperweight/core/extension/PaperExtension.kt -------------------------------------------------------------------------------- /paperweight-core/src/main/kotlin/io/papermc/paperweight/core/extension/PaperweightCoreExtension.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/paperweight/HEAD/paperweight-core/src/main/kotlin/io/papermc/paperweight/core/extension/PaperweightCoreExtension.kt -------------------------------------------------------------------------------- /paperweight-core/src/main/kotlin/io/papermc/paperweight/core/extension/PaperweightSourceGeneratorExt.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/paperweight/HEAD/paperweight-core/src/main/kotlin/io/papermc/paperweight/core/extension/PaperweightSourceGeneratorExt.kt -------------------------------------------------------------------------------- /paperweight-core/src/main/kotlin/io/papermc/paperweight/core/extension/SpigotExtension.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/paperweight/HEAD/paperweight-core/src/main/kotlin/io/papermc/paperweight/core/extension/SpigotExtension.kt -------------------------------------------------------------------------------- /paperweight-core/src/main/kotlin/io/papermc/paperweight/core/extension/UpdatingMinecraftExtension.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/paperweight/HEAD/paperweight-core/src/main/kotlin/io/papermc/paperweight/core/extension/UpdatingMinecraftExtension.kt -------------------------------------------------------------------------------- /paperweight-core/src/main/kotlin/io/papermc/paperweight/core/extension/UpstreamConfig.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/paperweight/HEAD/paperweight-core/src/main/kotlin/io/papermc/paperweight/core/extension/UpstreamConfig.kt -------------------------------------------------------------------------------- /paperweight-core/src/main/kotlin/io/papermc/paperweight/core/taskcontainers/AllTasks.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/paperweight/HEAD/paperweight-core/src/main/kotlin/io/papermc/paperweight/core/taskcontainers/AllTasks.kt -------------------------------------------------------------------------------- /paperweight-core/src/main/kotlin/io/papermc/paperweight/core/taskcontainers/CoreTasks.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/paperweight/HEAD/paperweight-core/src/main/kotlin/io/papermc/paperweight/core/taskcontainers/CoreTasks.kt -------------------------------------------------------------------------------- /paperweight-core/src/main/kotlin/io/papermc/paperweight/core/taskcontainers/DevBundleTasks.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/paperweight/HEAD/paperweight-core/src/main/kotlin/io/papermc/paperweight/core/taskcontainers/DevBundleTasks.kt -------------------------------------------------------------------------------- /paperweight-core/src/main/kotlin/io/papermc/paperweight/core/taskcontainers/InitialTasks.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/paperweight/HEAD/paperweight-core/src/main/kotlin/io/papermc/paperweight/core/taskcontainers/InitialTasks.kt -------------------------------------------------------------------------------- /paperweight-core/src/main/kotlin/io/papermc/paperweight/core/taskcontainers/MinecraftPatchingTasks.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/paperweight/HEAD/paperweight-core/src/main/kotlin/io/papermc/paperweight/core/taskcontainers/MinecraftPatchingTasks.kt -------------------------------------------------------------------------------- /paperweight-core/src/main/kotlin/io/papermc/paperweight/core/taskcontainers/PaperclipTasks.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/paperweight/HEAD/paperweight-core/src/main/kotlin/io/papermc/paperweight/core/taskcontainers/PaperclipTasks.kt -------------------------------------------------------------------------------- /paperweight-core/src/main/kotlin/io/papermc/paperweight/core/taskcontainers/PatchingTasks.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/paperweight/HEAD/paperweight-core/src/main/kotlin/io/papermc/paperweight/core/taskcontainers/PatchingTasks.kt -------------------------------------------------------------------------------- /paperweight-core/src/main/kotlin/io/papermc/paperweight/core/taskcontainers/SpigotTasks.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/paperweight/HEAD/paperweight-core/src/main/kotlin/io/papermc/paperweight/core/taskcontainers/SpigotTasks.kt -------------------------------------------------------------------------------- /paperweight-core/src/main/kotlin/io/papermc/paperweight/core/taskcontainers/UpstreamConfigTasks.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/paperweight/HEAD/paperweight-core/src/main/kotlin/io/papermc/paperweight/core/taskcontainers/UpstreamConfigTasks.kt -------------------------------------------------------------------------------- /paperweight-core/src/main/kotlin/io/papermc/paperweight/core/tasks/CheckoutRepo.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/paperweight/HEAD/paperweight-core/src/main/kotlin/io/papermc/paperweight/core/tasks/CheckoutRepo.kt -------------------------------------------------------------------------------- /paperweight-core/src/main/kotlin/io/papermc/paperweight/core/tasks/ExtractMinecraftSources.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/paperweight/HEAD/paperweight-core/src/main/kotlin/io/papermc/paperweight/core/tasks/ExtractMinecraftSources.kt -------------------------------------------------------------------------------- /paperweight-core/src/main/kotlin/io/papermc/paperweight/core/tasks/FilterRepo.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/paperweight/HEAD/paperweight-core/src/main/kotlin/io/papermc/paperweight/core/tasks/FilterRepo.kt -------------------------------------------------------------------------------- /paperweight-core/src/main/kotlin/io/papermc/paperweight/core/tasks/ImportLibraryFiles.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/paperweight/HEAD/paperweight-core/src/main/kotlin/io/papermc/paperweight/core/tasks/ImportLibraryFiles.kt -------------------------------------------------------------------------------- /paperweight-core/src/main/kotlin/io/papermc/paperweight/core/tasks/RunNestedBuild.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/paperweight/HEAD/paperweight-core/src/main/kotlin/io/papermc/paperweight/core/tasks/RunNestedBuild.kt -------------------------------------------------------------------------------- /paperweight-core/src/main/kotlin/io/papermc/paperweight/core/tasks/SetupForkMinecraftSources.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/paperweight/HEAD/paperweight-core/src/main/kotlin/io/papermc/paperweight/core/tasks/SetupForkMinecraftSources.kt -------------------------------------------------------------------------------- /paperweight-core/src/main/kotlin/io/papermc/paperweight/core/tasks/SetupMinecraftSources.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/paperweight/HEAD/paperweight-core/src/main/kotlin/io/papermc/paperweight/core/tasks/SetupMinecraftSources.kt -------------------------------------------------------------------------------- /paperweight-core/src/main/kotlin/io/papermc/paperweight/core/tasks/SetupPaperScript.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/paperweight/HEAD/paperweight-core/src/main/kotlin/io/papermc/paperweight/core/tasks/SetupPaperScript.kt -------------------------------------------------------------------------------- /paperweight-core/src/main/kotlin/io/papermc/paperweight/core/tasks/patching/ApplyFeaturePatches.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/paperweight/HEAD/paperweight-core/src/main/kotlin/io/papermc/paperweight/core/tasks/patching/ApplyFeaturePatches.kt -------------------------------------------------------------------------------- /paperweight-core/src/main/kotlin/io/papermc/paperweight/core/tasks/patching/ApplyFilePatches.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/paperweight/HEAD/paperweight-core/src/main/kotlin/io/papermc/paperweight/core/tasks/patching/ApplyFilePatches.kt -------------------------------------------------------------------------------- /paperweight-core/src/main/kotlin/io/papermc/paperweight/core/tasks/patching/ApplyFilePatchesFuzzy.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/paperweight/HEAD/paperweight-core/src/main/kotlin/io/papermc/paperweight/core/tasks/patching/ApplyFilePatchesFuzzy.kt -------------------------------------------------------------------------------- /paperweight-core/src/main/kotlin/io/papermc/paperweight/core/tasks/patching/ApplySingleFilePatches.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/paperweight/HEAD/paperweight-core/src/main/kotlin/io/papermc/paperweight/core/tasks/patching/ApplySingleFilePatches.kt -------------------------------------------------------------------------------- /paperweight-core/src/main/kotlin/io/papermc/paperweight/core/tasks/patching/FixupFilePatches.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/paperweight/HEAD/paperweight-core/src/main/kotlin/io/papermc/paperweight/core/tasks/patching/FixupFilePatches.kt -------------------------------------------------------------------------------- /paperweight-core/src/main/kotlin/io/papermc/paperweight/core/tasks/patching/RebuildFilePatches.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/paperweight/HEAD/paperweight-core/src/main/kotlin/io/papermc/paperweight/core/tasks/patching/RebuildFilePatches.kt -------------------------------------------------------------------------------- /paperweight-core/src/main/kotlin/io/papermc/paperweight/core/tasks/patching/RebuildSingleFilePatches.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/paperweight/HEAD/paperweight-core/src/main/kotlin/io/papermc/paperweight/core/tasks/patching/RebuildSingleFilePatches.kt -------------------------------------------------------------------------------- /paperweight-core/src/main/kotlin/io/papermc/paperweight/core/tasks/patchroulette/AbstractPatchRouletteTask.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/paperweight/HEAD/paperweight-core/src/main/kotlin/io/papermc/paperweight/core/tasks/patchroulette/AbstractPatchRouletteTask.kt -------------------------------------------------------------------------------- /paperweight-core/src/main/kotlin/io/papermc/paperweight/core/tasks/patchroulette/ClearPatchRouletteList.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/paperweight/HEAD/paperweight-core/src/main/kotlin/io/papermc/paperweight/core/tasks/patchroulette/ClearPatchRouletteList.kt -------------------------------------------------------------------------------- /paperweight-core/src/main/kotlin/io/papermc/paperweight/core/tasks/patchroulette/PatchRouletteApply.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/paperweight/HEAD/paperweight-core/src/main/kotlin/io/papermc/paperweight/core/tasks/patchroulette/PatchRouletteApply.kt -------------------------------------------------------------------------------- /paperweight-core/src/main/kotlin/io/papermc/paperweight/core/tasks/patchroulette/PatchRouletteCancel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/paperweight/HEAD/paperweight-core/src/main/kotlin/io/papermc/paperweight/core/tasks/patchroulette/PatchRouletteCancel.kt -------------------------------------------------------------------------------- /paperweight-core/src/main/kotlin/io/papermc/paperweight/core/tasks/patchroulette/PatchRouletteFinish.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/paperweight/HEAD/paperweight-core/src/main/kotlin/io/papermc/paperweight/core/tasks/patchroulette/PatchRouletteFinish.kt -------------------------------------------------------------------------------- /paperweight-core/src/main/kotlin/io/papermc/paperweight/core/tasks/patchroulette/PatchRouletteTasks.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/paperweight/HEAD/paperweight-core/src/main/kotlin/io/papermc/paperweight/core/tasks/patchroulette/PatchRouletteTasks.kt -------------------------------------------------------------------------------- /paperweight-core/src/main/kotlin/io/papermc/paperweight/core/tasks/patchroulette/PushPatchRouletteList.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/paperweight/HEAD/paperweight-core/src/main/kotlin/io/papermc/paperweight/core/tasks/patchroulette/PushPatchRouletteList.kt -------------------------------------------------------------------------------- /paperweight-core/src/main/kotlin/io/papermc/paperweight/core/tasks/patchroulette/ShowPatchRouletteList.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/paperweight/HEAD/paperweight-core/src/main/kotlin/io/papermc/paperweight/core/tasks/patchroulette/ShowPatchRouletteList.kt -------------------------------------------------------------------------------- /paperweight-core/src/main/kotlin/io/papermc/paperweight/core/util/ApplySourceATs.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/paperweight/HEAD/paperweight-core/src/main/kotlin/io/papermc/paperweight/core/util/ApplySourceATs.kt -------------------------------------------------------------------------------- /paperweight-core/src/main/kotlin/io/papermc/paperweight/core/util/project-util.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/paperweight/HEAD/paperweight-core/src/main/kotlin/io/papermc/paperweight/core/util/project-util.kt -------------------------------------------------------------------------------- /paperweight-core/src/main/kotlin/io/papermc/paperweight/core/util/utils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/paperweight/HEAD/paperweight-core/src/main/kotlin/io/papermc/paperweight/core/util/utils.kt -------------------------------------------------------------------------------- /paperweight-core/src/main/kotlin/io/papermc/paperweight/patcher/PaperweightPatcher.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/paperweight/HEAD/paperweight-core/src/main/kotlin/io/papermc/paperweight/patcher/PaperweightPatcher.kt -------------------------------------------------------------------------------- /paperweight-core/src/main/kotlin/io/papermc/paperweight/patcher/extension/PaperweightPatcherExtension.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/paperweight/HEAD/paperweight-core/src/main/kotlin/io/papermc/paperweight/patcher/extension/PaperweightPatcherExtension.kt -------------------------------------------------------------------------------- /paperweight-core/src/main/resources/META-INF/gradle-plugins/io.papermc.paperweight.paper-checkstyle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/paperweight/HEAD/paperweight-core/src/main/resources/META-INF/gradle-plugins/io.papermc.paperweight.paper-checkstyle.properties -------------------------------------------------------------------------------- /paperweight-core/src/main/resources/META-INF/gradle-plugins/io.papermc.paperweight.source-generator.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/paperweight/HEAD/paperweight-core/src/main/resources/META-INF/gradle-plugins/io.papermc.paperweight.source-generator.properties -------------------------------------------------------------------------------- /paperweight-core/src/test/kotlin/io/papermc/paperweight/FunctionalTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/paperweight/HEAD/paperweight-core/src/test/kotlin/io/papermc/paperweight/FunctionalTest.kt -------------------------------------------------------------------------------- /paperweight-core/src/test/kotlin/io/papermc/paperweight/core/tasks/patching/ApplyFilePatchesTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/paperweight/HEAD/paperweight-core/src/test/kotlin/io/papermc/paperweight/core/tasks/patching/ApplyFilePatchesTest.kt -------------------------------------------------------------------------------- /paperweight-core/src/test/kotlin/io/papermc/paperweight/core/tasks/patching/RebuildFilePatchesTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/paperweight/HEAD/paperweight-core/src/test/kotlin/io/papermc/paperweight/core/tasks/patching/RebuildFilePatchesTest.kt -------------------------------------------------------------------------------- /paperweight-core/src/test/kotlin/io/papermc/paperweight/core/tasks/patchroulette/PatchRouletteApplyTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/paperweight/HEAD/paperweight-core/src/test/kotlin/io/papermc/paperweight/core/tasks/patchroulette/PatchRouletteApplyTest.kt -------------------------------------------------------------------------------- /paperweight-core/src/test/kotlin/io/papermc/paperweight/core/util/ApplySourceATsTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/paperweight/HEAD/paperweight-core/src/test/kotlin/io/papermc/paperweight/core/util/ApplySourceATsTest.kt -------------------------------------------------------------------------------- /paperweight-core/src/test/kotlin/io/papermc/paperweight/util.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/paperweight/HEAD/paperweight-core/src/test/kotlin/io/papermc/paperweight/util.kt -------------------------------------------------------------------------------- /paperweight-core/src/test/resources/apply_patches/input/base/Test.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/paperweight/HEAD/paperweight-core/src/test/resources/apply_patches/input/base/Test.java -------------------------------------------------------------------------------- /paperweight-core/src/test/resources/apply_patches/input/patches/Test.java.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/paperweight/HEAD/paperweight-core/src/test/resources/apply_patches/input/patches/Test.java.patch -------------------------------------------------------------------------------- /paperweight-core/src/test/resources/apply_patches/output/source/Test.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/paperweight/HEAD/paperweight-core/src/test/resources/apply_patches/output/source/Test.java -------------------------------------------------------------------------------- /paperweight-core/src/test/resources/fake_mache/mache.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/paperweight/HEAD/paperweight-core/src/test/resources/fake_mache/mache.json -------------------------------------------------------------------------------- /paperweight-core/src/test/resources/fake_mache/patches/Test.java.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/paperweight/HEAD/paperweight-core/src/test/resources/fake_mache/patches/Test.java.patch -------------------------------------------------------------------------------- /paperweight-core/src/test/resources/fake_mojang/bundle/META-INF/libraries.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/paperweight/HEAD/paperweight-core/src/test/resources/fake_mojang/bundle/META-INF/libraries.list -------------------------------------------------------------------------------- /paperweight-core/src/test/resources/fake_mojang/bundle/META-INF/versions.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/paperweight/HEAD/paperweight-core/src/test/resources/fake_mojang/bundle/META-INF/versions.list -------------------------------------------------------------------------------- /paperweight-core/src/test/resources/fake_mojang/bundle/version.json: -------------------------------------------------------------------------------- 1 | { 2 | "id": "fake" 3 | } 4 | -------------------------------------------------------------------------------- /paperweight-core/src/test/resources/fake_mojang/mappings.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/paperweight/HEAD/paperweight-core/src/test/resources/fake_mojang/mappings.txt -------------------------------------------------------------------------------- /paperweight-core/src/test/resources/fake_mojang/server/Test.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/paperweight/HEAD/paperweight-core/src/test/resources/fake_mojang/server/Test.java -------------------------------------------------------------------------------- /paperweight-core/src/test/resources/fake_mojang/server/test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/paperweight/HEAD/paperweight-core/src/test/resources/fake_mojang/server/test.json -------------------------------------------------------------------------------- /paperweight-core/src/test/resources/fake_mojang/version.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/paperweight/HEAD/paperweight-core/src/test/resources/fake_mojang/version.json -------------------------------------------------------------------------------- /paperweight-core/src/test/resources/fake_mojang/version_manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/paperweight/HEAD/paperweight-core/src/test/resources/fake_mojang/version_manifest.json -------------------------------------------------------------------------------- /paperweight-core/src/test/resources/functional_test/.editorconfig: -------------------------------------------------------------------------------- 1 | [*.patch] 2 | trim_trailing_whitespace=false 3 | -------------------------------------------------------------------------------- /paperweight-core/src/test/resources/functional_test/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/paperweight/HEAD/paperweight-core/src/test/resources/functional_test/.gitignore -------------------------------------------------------------------------------- /paperweight-core/src/test/resources/functional_test/build-data/expected.at: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/paperweight/HEAD/paperweight-core/src/test/resources/functional_test/build-data/expected.at -------------------------------------------------------------------------------- /paperweight-core/src/test/resources/functional_test/build-data/fake.at: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/paperweight/HEAD/paperweight-core/src/test/resources/functional_test/build-data/fake.at -------------------------------------------------------------------------------- /paperweight-core/src/test/resources/functional_test/build-data/paper.at: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/paperweight/HEAD/paperweight-core/src/test/resources/functional_test/build-data/paper.at -------------------------------------------------------------------------------- /paperweight-core/src/test/resources/functional_test/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/paperweight/HEAD/paperweight-core/src/test/resources/functional_test/build.gradle -------------------------------------------------------------------------------- /paperweight-core/src/test/resources/functional_test/fake-patches/expected/0001-Feature.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/paperweight/HEAD/paperweight-core/src/test/resources/functional_test/fake-patches/expected/0001-Feature.patch -------------------------------------------------------------------------------- /paperweight-core/src/test/resources/functional_test/fake-patches/expected/Test.java.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/paperweight/HEAD/paperweight-core/src/test/resources/functional_test/fake-patches/expected/Test.java.patch -------------------------------------------------------------------------------- /paperweight-core/src/test/resources/functional_test/fake-patches/features/0001-Feature.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/paperweight/HEAD/paperweight-core/src/test/resources/functional_test/fake-patches/features/0001-Feature.patch -------------------------------------------------------------------------------- /paperweight-core/src/test/resources/functional_test/fake-patches/resources/test.json.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/paperweight/HEAD/paperweight-core/src/test/resources/functional_test/fake-patches/resources/test.json.patch -------------------------------------------------------------------------------- /paperweight-core/src/test/resources/functional_test/fake-patches/sources/Test.java.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/paperweight/HEAD/paperweight-core/src/test/resources/functional_test/fake-patches/sources/Test.java.patch -------------------------------------------------------------------------------- /paperweight-core/src/test/resources/functional_test/lib-patches/0002-Remove-rotten-apples.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/paperweight/HEAD/paperweight-core/src/test/resources/functional_test/lib-patches/0002-Remove-rotten-apples.patch -------------------------------------------------------------------------------- /paperweight-core/src/test/resources/functional_test/lib-patches/Main.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/paperweight/HEAD/paperweight-core/src/test/resources/functional_test/lib-patches/Main.java -------------------------------------------------------------------------------- /paperweight-core/src/test/resources/functional_test/lib-patches/dev-imports.txt: -------------------------------------------------------------------------------- 1 | oshi-core oshi.PlatformEnum 2 | -------------------------------------------------------------------------------- /paperweight-core/src/test/resources/functional_test/lib-patches/org/alcibiade/asciiart/widget/PictureWidget.java.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/paperweight/HEAD/paperweight-core/src/test/resources/functional_test/lib-patches/org/alcibiade/asciiart/widget/PictureWidget.java.patch -------------------------------------------------------------------------------- /paperweight-core/src/test/resources/functional_test/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/paperweight/HEAD/paperweight-core/src/test/resources/functional_test/settings.gradle -------------------------------------------------------------------------------- /paperweight-core/src/test/resources/functional_test/test-api/build.gradle: -------------------------------------------------------------------------------- 1 | plugins { 2 | id "java-library" 3 | } 4 | -------------------------------------------------------------------------------- /paperweight-core/src/test/resources/functional_test/test-server/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/paperweight/HEAD/paperweight-core/src/test/resources/functional_test/test-server/build.gradle -------------------------------------------------------------------------------- /paperweight-core/src/test/resources/functional_test/test-server/patches/features/0001-something.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/paperweight/HEAD/paperweight-core/src/test/resources/functional_test/test-server/patches/features/0001-something.patch -------------------------------------------------------------------------------- /paperweight-core/src/test/resources/functional_test/test-server/patches/resources/version.json.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/paperweight/HEAD/paperweight-core/src/test/resources/functional_test/test-server/patches/resources/version.json.patch -------------------------------------------------------------------------------- /paperweight-core/src/test/resources/functional_test/test-server/patches/sources/net/minecraft/core/Rotations.java.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/paperweight/HEAD/paperweight-core/src/test/resources/functional_test/test-server/patches/sources/net/minecraft/core/Rotations.java.patch -------------------------------------------------------------------------------- /paperweight-lib/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/paperweight/HEAD/paperweight-lib/build.gradle.kts -------------------------------------------------------------------------------- /paperweight-lib/src/main/kotlin-templates/io/papermc/paperweight/util/LibraryVersions.kt.peb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/paperweight/HEAD/paperweight-lib/src/main/kotlin-templates/io/papermc/paperweight/util/LibraryVersions.kt.peb -------------------------------------------------------------------------------- /paperweight-lib/src/main/kotlin/io/papermc/paperweight/DownloadService.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/paperweight/HEAD/paperweight-lib/src/main/kotlin/io/papermc/paperweight/DownloadService.kt -------------------------------------------------------------------------------- /paperweight-lib/src/main/kotlin/io/papermc/paperweight/PaperweightException.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/paperweight/HEAD/paperweight-lib/src/main/kotlin/io/papermc/paperweight/PaperweightException.kt -------------------------------------------------------------------------------- /paperweight-lib/src/main/kotlin/io/papermc/paperweight/attribute/DevBundleOutput.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/paperweight/HEAD/paperweight-lib/src/main/kotlin/io/papermc/paperweight/attribute/DevBundleOutput.kt -------------------------------------------------------------------------------- /paperweight-lib/src/main/kotlin/io/papermc/paperweight/attribute/MacheOutput.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/paperweight/HEAD/paperweight-lib/src/main/kotlin/io/papermc/paperweight/attribute/MacheOutput.kt -------------------------------------------------------------------------------- /paperweight-lib/src/main/kotlin/io/papermc/paperweight/tasks/ApplyAccessTransform.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/paperweight/HEAD/paperweight-lib/src/main/kotlin/io/papermc/paperweight/tasks/ApplyAccessTransform.kt -------------------------------------------------------------------------------- /paperweight-lib/src/main/kotlin/io/papermc/paperweight/tasks/BaseTask.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/paperweight/HEAD/paperweight-lib/src/main/kotlin/io/papermc/paperweight/tasks/BaseTask.kt -------------------------------------------------------------------------------- /paperweight-lib/src/main/kotlin/io/papermc/paperweight/tasks/CleanupMappings.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/paperweight/HEAD/paperweight-lib/src/main/kotlin/io/papermc/paperweight/tasks/CleanupMappings.kt -------------------------------------------------------------------------------- /paperweight-lib/src/main/kotlin/io/papermc/paperweight/tasks/CloneRepo.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/paperweight/HEAD/paperweight-lib/src/main/kotlin/io/papermc/paperweight/tasks/CloneRepo.kt -------------------------------------------------------------------------------- /paperweight-lib/src/main/kotlin/io/papermc/paperweight/tasks/CollectATsFromPatches.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/paperweight/HEAD/paperweight-lib/src/main/kotlin/io/papermc/paperweight/tasks/CollectATsFromPatches.kt -------------------------------------------------------------------------------- /paperweight-lib/src/main/kotlin/io/papermc/paperweight/tasks/ControllableOutputTask.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/paperweight/HEAD/paperweight-lib/src/main/kotlin/io/papermc/paperweight/tasks/ControllableOutputTask.kt -------------------------------------------------------------------------------- /paperweight-lib/src/main/kotlin/io/papermc/paperweight/tasks/CreateBundlerJar.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/paperweight/HEAD/paperweight-lib/src/main/kotlin/io/papermc/paperweight/tasks/CreateBundlerJar.kt -------------------------------------------------------------------------------- /paperweight-lib/src/main/kotlin/io/papermc/paperweight/tasks/CreateDiffOutput.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/paperweight/HEAD/paperweight-lib/src/main/kotlin/io/papermc/paperweight/tasks/CreateDiffOutput.kt -------------------------------------------------------------------------------- /paperweight-lib/src/main/kotlin/io/papermc/paperweight/tasks/CreatePaperclipJar.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/paperweight/HEAD/paperweight-lib/src/main/kotlin/io/papermc/paperweight/tasks/CreatePaperclipJar.kt -------------------------------------------------------------------------------- /paperweight-lib/src/main/kotlin/io/papermc/paperweight/tasks/DownloadServerJar.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/paperweight/HEAD/paperweight-lib/src/main/kotlin/io/papermc/paperweight/tasks/DownloadServerJar.kt -------------------------------------------------------------------------------- /paperweight-lib/src/main/kotlin/io/papermc/paperweight/tasks/ExtractFromBundler.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/paperweight/HEAD/paperweight-lib/src/main/kotlin/io/papermc/paperweight/tasks/ExtractFromBundler.kt -------------------------------------------------------------------------------- /paperweight-lib/src/main/kotlin/io/papermc/paperweight/tasks/FilterJar.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/paperweight/HEAD/paperweight-lib/src/main/kotlin/io/papermc/paperweight/tasks/FilterJar.kt -------------------------------------------------------------------------------- /paperweight-lib/src/main/kotlin/io/papermc/paperweight/tasks/FixJarForReobf.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/paperweight/HEAD/paperweight-lib/src/main/kotlin/io/papermc/paperweight/tasks/FixJarForReobf.kt -------------------------------------------------------------------------------- /paperweight-lib/src/main/kotlin/io/papermc/paperweight/tasks/GenerateDevBundle.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/paperweight/HEAD/paperweight-lib/src/main/kotlin/io/papermc/paperweight/tasks/GenerateDevBundle.kt -------------------------------------------------------------------------------- /paperweight-lib/src/main/kotlin/io/papermc/paperweight/tasks/GenerateMappings.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/paperweight/HEAD/paperweight-lib/src/main/kotlin/io/papermc/paperweight/tasks/GenerateMappings.kt -------------------------------------------------------------------------------- /paperweight-lib/src/main/kotlin/io/papermc/paperweight/tasks/GenerateRelocatedReobfMappings.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/paperweight/HEAD/paperweight-lib/src/main/kotlin/io/papermc/paperweight/tasks/GenerateRelocatedReobfMappings.kt -------------------------------------------------------------------------------- /paperweight-lib/src/main/kotlin/io/papermc/paperweight/tasks/GenerateReobfMappings.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/paperweight/HEAD/paperweight-lib/src/main/kotlin/io/papermc/paperweight/tasks/GenerateReobfMappings.kt -------------------------------------------------------------------------------- /paperweight-lib/src/main/kotlin/io/papermc/paperweight/tasks/GenerateSpigotMappings.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/paperweight/HEAD/paperweight-lib/src/main/kotlin/io/papermc/paperweight/tasks/GenerateSpigotMappings.kt -------------------------------------------------------------------------------- /paperweight-lib/src/main/kotlin/io/papermc/paperweight/tasks/IncludeMappings.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/paperweight/HEAD/paperweight-lib/src/main/kotlin/io/papermc/paperweight/tasks/IncludeMappings.kt -------------------------------------------------------------------------------- /paperweight-lib/src/main/kotlin/io/papermc/paperweight/tasks/MergeAccessTransforms.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/paperweight/HEAD/paperweight-lib/src/main/kotlin/io/papermc/paperweight/tasks/MergeAccessTransforms.kt -------------------------------------------------------------------------------- /paperweight-lib/src/main/kotlin/io/papermc/paperweight/tasks/PatchMappings.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/paperweight/HEAD/paperweight-lib/src/main/kotlin/io/papermc/paperweight/tasks/PatchMappings.kt -------------------------------------------------------------------------------- /paperweight-lib/src/main/kotlin/io/papermc/paperweight/tasks/RebuildGitPatches.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/paperweight/HEAD/paperweight-lib/src/main/kotlin/io/papermc/paperweight/tasks/RebuildGitPatches.kt -------------------------------------------------------------------------------- /paperweight-lib/src/main/kotlin/io/papermc/paperweight/tasks/RelocateClassNameConstants.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/paperweight/HEAD/paperweight-lib/src/main/kotlin/io/papermc/paperweight/tasks/RelocateClassNameConstants.kt -------------------------------------------------------------------------------- /paperweight-lib/src/main/kotlin/io/papermc/paperweight/tasks/RemapJar.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/paperweight/HEAD/paperweight-lib/src/main/kotlin/io/papermc/paperweight/tasks/RemapJar.kt -------------------------------------------------------------------------------- /paperweight-lib/src/main/kotlin/io/papermc/paperweight/tasks/ScanJar.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/paperweight/HEAD/paperweight-lib/src/main/kotlin/io/papermc/paperweight/tasks/ScanJar.kt -------------------------------------------------------------------------------- /paperweight-lib/src/main/kotlin/io/papermc/paperweight/tasks/ScanJarForBadCalls.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/paperweight/HEAD/paperweight-lib/src/main/kotlin/io/papermc/paperweight/tasks/ScanJarForBadCalls.kt -------------------------------------------------------------------------------- /paperweight-lib/src/main/kotlin/io/papermc/paperweight/tasks/ScanJarForOldGeneratedCode.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/paperweight/HEAD/paperweight-lib/src/main/kotlin/io/papermc/paperweight/tasks/ScanJarForOldGeneratedCode.kt -------------------------------------------------------------------------------- /paperweight-lib/src/main/kotlin/io/papermc/paperweight/tasks/SpigotRemapJar.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/paperweight/HEAD/paperweight-lib/src/main/kotlin/io/papermc/paperweight/tasks/SpigotRemapJar.kt -------------------------------------------------------------------------------- /paperweight-lib/src/main/kotlin/io/papermc/paperweight/tasks/UnpackSpigotBuildData.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/paperweight/HEAD/paperweight-lib/src/main/kotlin/io/papermc/paperweight/tasks/UnpackSpigotBuildData.kt -------------------------------------------------------------------------------- /paperweight-lib/src/main/kotlin/io/papermc/paperweight/tasks/ZippedTask.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/paperweight/HEAD/paperweight-lib/src/main/kotlin/io/papermc/paperweight/tasks/ZippedTask.kt -------------------------------------------------------------------------------- /paperweight-lib/src/main/kotlin/io/papermc/paperweight/tasks/download-task.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/paperweight/HEAD/paperweight-lib/src/main/kotlin/io/papermc/paperweight/tasks/download-task.kt -------------------------------------------------------------------------------- /paperweight-lib/src/main/kotlin/io/papermc/paperweight/tasks/java-launcher.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/paperweight/HEAD/paperweight-lib/src/main/kotlin/io/papermc/paperweight/tasks/java-launcher.kt -------------------------------------------------------------------------------- /paperweight-lib/src/main/kotlin/io/papermc/paperweight/tasks/mache/DecompileJar.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/paperweight/HEAD/paperweight-lib/src/main/kotlin/io/papermc/paperweight/tasks/mache/DecompileJar.kt -------------------------------------------------------------------------------- /paperweight-lib/src/main/kotlin/io/papermc/paperweight/tasks/mache/RunCodebook.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/paperweight/HEAD/paperweight-lib/src/main/kotlin/io/papermc/paperweight/tasks/mache/RunCodebook.kt -------------------------------------------------------------------------------- /paperweight-lib/src/main/kotlin/io/papermc/paperweight/util/ClassNodeCache.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/paperweight/HEAD/paperweight-lib/src/main/kotlin/io/papermc/paperweight/util/ClassNodeCache.kt -------------------------------------------------------------------------------- /paperweight-lib/src/main/kotlin/io/papermc/paperweight/util/ClassNodeCacheImpl.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/paperweight/HEAD/paperweight-lib/src/main/kotlin/io/papermc/paperweight/util/ClassNodeCacheImpl.kt -------------------------------------------------------------------------------- /paperweight-lib/src/main/kotlin/io/papermc/paperweight/util/JarProcessing.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/paperweight/HEAD/paperweight-lib/src/main/kotlin/io/papermc/paperweight/util/JarProcessing.kt -------------------------------------------------------------------------------- /paperweight-lib/src/main/kotlin/io/papermc/paperweight/util/MappingFormats.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/paperweight/HEAD/paperweight-lib/src/main/kotlin/io/papermc/paperweight/util/MappingFormats.kt -------------------------------------------------------------------------------- /paperweight-lib/src/main/kotlin/io/papermc/paperweight/util/asm.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/paperweight/HEAD/paperweight-lib/src/main/kotlin/io/papermc/paperweight/util/asm.kt -------------------------------------------------------------------------------- /paperweight-lib/src/main/kotlin/io/papermc/paperweight/util/at.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/paperweight/HEAD/paperweight-lib/src/main/kotlin/io/papermc/paperweight/util/at.kt -------------------------------------------------------------------------------- /paperweight-lib/src/main/kotlin/io/papermc/paperweight/util/constants/constants.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/paperweight/HEAD/paperweight-lib/src/main/kotlin/io/papermc/paperweight/util/constants/constants.kt -------------------------------------------------------------------------------- /paperweight-lib/src/main/kotlin/io/papermc/paperweight/util/data/BuildDataInfo.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/paperweight/HEAD/paperweight-lib/src/main/kotlin/io/papermc/paperweight/util/data/BuildDataInfo.kt -------------------------------------------------------------------------------- /paperweight-lib/src/main/kotlin/io/papermc/paperweight/util/data/FileEntry.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/paperweight/HEAD/paperweight-lib/src/main/kotlin/io/papermc/paperweight/util/data/FileEntry.kt -------------------------------------------------------------------------------- /paperweight-lib/src/main/kotlin/io/papermc/paperweight/util/data/LibraryChange.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/paperweight/HEAD/paperweight-lib/src/main/kotlin/io/papermc/paperweight/util/data/LibraryChange.kt -------------------------------------------------------------------------------- /paperweight-lib/src/main/kotlin/io/papermc/paperweight/util/data/MavenArtifact.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/paperweight/HEAD/paperweight-lib/src/main/kotlin/io/papermc/paperweight/util/data/MavenArtifact.kt -------------------------------------------------------------------------------- /paperweight-lib/src/main/kotlin/io/papermc/paperweight/util/data/MinecraftManifest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/paperweight/HEAD/paperweight-lib/src/main/kotlin/io/papermc/paperweight/util/data/MinecraftManifest.kt -------------------------------------------------------------------------------- /paperweight-lib/src/main/kotlin/io/papermc/paperweight/util/data/ModuleId.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/paperweight/HEAD/paperweight-lib/src/main/kotlin/io/papermc/paperweight/util/data/ModuleId.kt -------------------------------------------------------------------------------- /paperweight-lib/src/main/kotlin/io/papermc/paperweight/util/data/mache/MacheAdditionalDependencies.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/paperweight/HEAD/paperweight-lib/src/main/kotlin/io/papermc/paperweight/util/data/mache/MacheAdditionalDependencies.kt -------------------------------------------------------------------------------- /paperweight-lib/src/main/kotlin/io/papermc/paperweight/util/data/mache/MacheDependencies.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/paperweight/HEAD/paperweight-lib/src/main/kotlin/io/papermc/paperweight/util/data/mache/MacheDependencies.kt -------------------------------------------------------------------------------- /paperweight-lib/src/main/kotlin/io/papermc/paperweight/util/data/mache/MacheMeta.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/paperweight/HEAD/paperweight-lib/src/main/kotlin/io/papermc/paperweight/util/data/mache/MacheMeta.kt -------------------------------------------------------------------------------- /paperweight-lib/src/main/kotlin/io/papermc/paperweight/util/data/mache/MacheRepository.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/paperweight/HEAD/paperweight-lib/src/main/kotlin/io/papermc/paperweight/util/data/mache/MacheRepository.kt -------------------------------------------------------------------------------- /paperweight-lib/src/main/kotlin/io/papermc/paperweight/util/data/mache/MavenArtifact.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/paperweight/HEAD/paperweight-lib/src/main/kotlin/io/papermc/paperweight/util/data/mache/MavenArtifact.kt -------------------------------------------------------------------------------- /paperweight-lib/src/main/kotlin/io/papermc/paperweight/util/dependencies.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/paperweight/HEAD/paperweight-lib/src/main/kotlin/io/papermc/paperweight/util/dependencies.kt -------------------------------------------------------------------------------- /paperweight-lib/src/main/kotlin/io/papermc/paperweight/util/durations.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/paperweight/HEAD/paperweight-lib/src/main/kotlin/io/papermc/paperweight/util/durations.kt -------------------------------------------------------------------------------- /paperweight-lib/src/main/kotlin/io/papermc/paperweight/util/extensions.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/paperweight/HEAD/paperweight-lib/src/main/kotlin/io/papermc/paperweight/util/extensions.kt -------------------------------------------------------------------------------- /paperweight-lib/src/main/kotlin/io/papermc/paperweight/util/file-lock.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/paperweight/HEAD/paperweight-lib/src/main/kotlin/io/papermc/paperweight/util/file-lock.kt -------------------------------------------------------------------------------- /paperweight-lib/src/main/kotlin/io/papermc/paperweight/util/file.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/paperweight/HEAD/paperweight-lib/src/main/kotlin/io/papermc/paperweight/util/file.kt -------------------------------------------------------------------------------- /paperweight-lib/src/main/kotlin/io/papermc/paperweight/util/filter-jar.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/paperweight/HEAD/paperweight-lib/src/main/kotlin/io/papermc/paperweight/util/filter-jar.kt -------------------------------------------------------------------------------- /paperweight-lib/src/main/kotlin/io/papermc/paperweight/util/git.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/paperweight/HEAD/paperweight-lib/src/main/kotlin/io/papermc/paperweight/util/git.kt -------------------------------------------------------------------------------- /paperweight-lib/src/main/kotlin/io/papermc/paperweight/util/jar-runner.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/paperweight/HEAD/paperweight-lib/src/main/kotlin/io/papermc/paperweight/util/jar-runner.kt -------------------------------------------------------------------------------- /paperweight-lib/src/main/kotlin/io/papermc/paperweight/util/nio.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/paperweight/HEAD/paperweight-lib/src/main/kotlin/io/papermc/paperweight/util/nio.kt -------------------------------------------------------------------------------- /paperweight-lib/src/main/kotlin/io/papermc/paperweight/util/relocation.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/paperweight/HEAD/paperweight-lib/src/main/kotlin/io/papermc/paperweight/util/relocation.kt -------------------------------------------------------------------------------- /paperweight-lib/src/main/kotlin/io/papermc/paperweight/util/utils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/paperweight/HEAD/paperweight-lib/src/main/kotlin/io/papermc/paperweight/util/utils.kt -------------------------------------------------------------------------------- /paperweight-lib/src/main/kotlin/io/papermc/paperweight/util/zip.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/paperweight/HEAD/paperweight-lib/src/main/kotlin/io/papermc/paperweight/util/zip.kt -------------------------------------------------------------------------------- /paperweight-lib/src/main/resources/post-rewrite.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/paperweight/HEAD/paperweight-lib/src/main/resources/post-rewrite.sh -------------------------------------------------------------------------------- /paperweight-lib/src/test/kotlin/io/papermc/paperweight/tasks/ApplyAccessTransformTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/paperweight/HEAD/paperweight-lib/src/test/kotlin/io/papermc/paperweight/tasks/ApplyAccessTransformTest.kt -------------------------------------------------------------------------------- /paperweight-lib/src/test/kotlin/io/papermc/paperweight/tasks/TaskTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/paperweight/HEAD/paperweight-lib/src/test/kotlin/io/papermc/paperweight/tasks/TaskTest.kt -------------------------------------------------------------------------------- /paperweight-lib/src/test/kotlin/io/papermc/paperweight/util/ATTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/paperweight/HEAD/paperweight-lib/src/test/kotlin/io/papermc/paperweight/util/ATTest.kt -------------------------------------------------------------------------------- /paperweight-lib/src/test/kotlin/io/papermc/paperweight/util/FileUtilsTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/paperweight/HEAD/paperweight-lib/src/test/kotlin/io/papermc/paperweight/util/FileUtilsTest.kt -------------------------------------------------------------------------------- /paperweight-lib/src/test/resources/apply_access_transform/input/Test.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/paperweight/HEAD/paperweight-lib/src/test/resources/apply_access_transform/input/Test.java -------------------------------------------------------------------------------- /paperweight-lib/src/test/resources/apply_access_transform/input/ats.at: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/paperweight/HEAD/paperweight-lib/src/test/resources/apply_access_transform/input/ats.at -------------------------------------------------------------------------------- /paperweight-lib/src/test/resources/apply_access_transform/output/output.javap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/paperweight/HEAD/paperweight-lib/src/test/resources/apply_access_transform/output/output.javap -------------------------------------------------------------------------------- /paperweight-lib/src/test/resources/apply_source_at/input/Test.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/paperweight/HEAD/paperweight-lib/src/test/resources/apply_source_at/input/Test.java -------------------------------------------------------------------------------- /paperweight-lib/src/test/resources/apply_source_at/input/Unrelated.java: -------------------------------------------------------------------------------- 1 | class Unrealted { 2 | 3 | } 4 | -------------------------------------------------------------------------------- /paperweight-lib/src/test/resources/apply_source_at/input/ats.at: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/paperweight/HEAD/paperweight-lib/src/test/resources/apply_source_at/input/ats.at -------------------------------------------------------------------------------- /paperweight-lib/src/test/resources/apply_source_at/output/Test.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/paperweight/HEAD/paperweight-lib/src/test/resources/apply_source_at/output/Test.java -------------------------------------------------------------------------------- /paperweight-lib/src/test/resources/apply_source_at/output/Unrelated.java: -------------------------------------------------------------------------------- 1 | class Unrealted { 2 | 3 | } 4 | -------------------------------------------------------------------------------- /paperweight-lib/src/test/resources/rebuild_patches/input/ats.at: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/paperweight/HEAD/paperweight-lib/src/test/resources/rebuild_patches/input/ats.at -------------------------------------------------------------------------------- /paperweight-lib/src/test/resources/rebuild_patches/input/base/Test.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/paperweight/HEAD/paperweight-lib/src/test/resources/rebuild_patches/input/base/Test.java -------------------------------------------------------------------------------- /paperweight-lib/src/test/resources/rebuild_patches/input/source/Test.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/paperweight/HEAD/paperweight-lib/src/test/resources/rebuild_patches/input/source/Test.java -------------------------------------------------------------------------------- /paperweight-lib/src/test/resources/rebuild_patches/output/ats.at: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/paperweight/HEAD/paperweight-lib/src/test/resources/rebuild_patches/output/ats.at -------------------------------------------------------------------------------- /paperweight-lib/src/test/resources/rebuild_patches/output/base/Test.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/paperweight/HEAD/paperweight-lib/src/test/resources/rebuild_patches/output/base/Test.java -------------------------------------------------------------------------------- /paperweight-lib/src/test/resources/rebuild_patches/output/patches/Test.java.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/paperweight/HEAD/paperweight-lib/src/test/resources/rebuild_patches/output/patches/Test.java.patch -------------------------------------------------------------------------------- /paperweight-lib/src/test/resources/rebuild_patches/output/source/Test.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/paperweight/HEAD/paperweight-lib/src/test/resources/rebuild_patches/output/source/Test.java -------------------------------------------------------------------------------- /paperweight-userdev/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/paperweight/HEAD/paperweight-userdev/build.gradle.kts -------------------------------------------------------------------------------- /paperweight-userdev/src/main/kotlin/io/papermc/paperweight/userdev/PaperweightUser.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/paperweight/HEAD/paperweight-userdev/src/main/kotlin/io/papermc/paperweight/userdev/PaperweightUser.kt -------------------------------------------------------------------------------- /paperweight-userdev/src/main/kotlin/io/papermc/paperweight/userdev/PaperweightUserDependenciesExtension.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/paperweight/HEAD/paperweight-userdev/src/main/kotlin/io/papermc/paperweight/userdev/PaperweightUserDependenciesExtension.kt -------------------------------------------------------------------------------- /paperweight-userdev/src/main/kotlin/io/papermc/paperweight/userdev/PaperweightUserExtension.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/paperweight/HEAD/paperweight-userdev/src/main/kotlin/io/papermc/paperweight/userdev/PaperweightUserExtension.kt -------------------------------------------------------------------------------- /paperweight-userdev/src/main/kotlin/io/papermc/paperweight/userdev/ReobfArtifactConfiguration.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/paperweight/HEAD/paperweight-userdev/src/main/kotlin/io/papermc/paperweight/userdev/ReobfArtifactConfiguration.kt -------------------------------------------------------------------------------- /paperweight-userdev/src/main/kotlin/io/papermc/paperweight/userdev/attribute/Obfuscation.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/paperweight/HEAD/paperweight-userdev/src/main/kotlin/io/papermc/paperweight/userdev/attribute/Obfuscation.kt -------------------------------------------------------------------------------- /paperweight-userdev/src/main/kotlin/io/papermc/paperweight/userdev/internal/JunitExclusionRule.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/paperweight/HEAD/paperweight-userdev/src/main/kotlin/io/papermc/paperweight/userdev/internal/JunitExclusionRule.kt -------------------------------------------------------------------------------- /paperweight-userdev/src/main/kotlin/io/papermc/paperweight/userdev/internal/action/CacheManager.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/paperweight/HEAD/paperweight-userdev/src/main/kotlin/io/papermc/paperweight/userdev/internal/action/CacheManager.kt -------------------------------------------------------------------------------- /paperweight-userdev/src/main/kotlin/io/papermc/paperweight/userdev/internal/action/WorkDispatcher.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/paperweight/HEAD/paperweight-userdev/src/main/kotlin/io/papermc/paperweight/userdev/internal/action/WorkDispatcher.kt -------------------------------------------------------------------------------- /paperweight-userdev/src/main/kotlin/io/papermc/paperweight/userdev/internal/action/WorkDispatcherImpl.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/paperweight/HEAD/paperweight-userdev/src/main/kotlin/io/papermc/paperweight/userdev/internal/action/WorkDispatcherImpl.kt -------------------------------------------------------------------------------- /paperweight-userdev/src/main/kotlin/io/papermc/paperweight/userdev/internal/action/WorkGraph.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/paperweight/HEAD/paperweight-userdev/src/main/kotlin/io/papermc/paperweight/userdev/internal/action/WorkGraph.kt -------------------------------------------------------------------------------- /paperweight-userdev/src/main/kotlin/io/papermc/paperweight/userdev/internal/action/values.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/paperweight/HEAD/paperweight-userdev/src/main/kotlin/io/papermc/paperweight/userdev/internal/action/values.kt -------------------------------------------------------------------------------- /paperweight-userdev/src/main/kotlin/io/papermc/paperweight/userdev/internal/setup/DevBundles.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/paperweight/HEAD/paperweight-userdev/src/main/kotlin/io/papermc/paperweight/userdev/internal/setup/DevBundles.kt -------------------------------------------------------------------------------- /paperweight-userdev/src/main/kotlin/io/papermc/paperweight/userdev/internal/setup/SetupHandler.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/paperweight/HEAD/paperweight-userdev/src/main/kotlin/io/papermc/paperweight/userdev/internal/setup/SetupHandler.kt -------------------------------------------------------------------------------- /paperweight-userdev/src/main/kotlin/io/papermc/paperweight/userdev/internal/setup/SetupHandlerImpl.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/paperweight/HEAD/paperweight-userdev/src/main/kotlin/io/papermc/paperweight/userdev/internal/setup/SetupHandlerImpl.kt -------------------------------------------------------------------------------- /paperweight-userdev/src/main/kotlin/io/papermc/paperweight/userdev/internal/setup/UserdevSetup.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/paperweight/HEAD/paperweight-userdev/src/main/kotlin/io/papermc/paperweight/userdev/internal/setup/UserdevSetup.kt -------------------------------------------------------------------------------- /paperweight-userdev/src/main/kotlin/io/papermc/paperweight/userdev/internal/setup/UserdevSetupTask.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/paperweight/HEAD/paperweight-userdev/src/main/kotlin/io/papermc/paperweight/userdev/internal/setup/UserdevSetupTask.kt -------------------------------------------------------------------------------- /paperweight-userdev/src/main/kotlin/io/papermc/paperweight/userdev/internal/setup/action/AccessTransformMinecraftAction.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/paperweight/HEAD/paperweight-userdev/src/main/kotlin/io/papermc/paperweight/userdev/internal/setup/action/AccessTransformMinecraftAction.kt -------------------------------------------------------------------------------- /paperweight-userdev/src/main/kotlin/io/papermc/paperweight/userdev/internal/setup/action/ApplyDevBundlePatchesAction.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/paperweight/HEAD/paperweight-userdev/src/main/kotlin/io/papermc/paperweight/userdev/internal/setup/action/ApplyDevBundlePatchesAction.kt -------------------------------------------------------------------------------- /paperweight-userdev/src/main/kotlin/io/papermc/paperweight/userdev/internal/setup/action/DecompileMinecraftAction.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/paperweight/HEAD/paperweight-userdev/src/main/kotlin/io/papermc/paperweight/userdev/internal/setup/action/DecompileMinecraftAction.kt -------------------------------------------------------------------------------- /paperweight-userdev/src/main/kotlin/io/papermc/paperweight/userdev/internal/setup/action/ExtractFromBundlerAction.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/paperweight/HEAD/paperweight-userdev/src/main/kotlin/io/papermc/paperweight/userdev/internal/setup/action/ExtractFromBundlerAction.kt -------------------------------------------------------------------------------- /paperweight-userdev/src/main/kotlin/io/papermc/paperweight/userdev/internal/setup/action/FilterPaperShadowJarAction.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/paperweight/HEAD/paperweight-userdev/src/main/kotlin/io/papermc/paperweight/userdev/internal/setup/action/FilterPaperShadowJarAction.kt -------------------------------------------------------------------------------- /paperweight-userdev/src/main/kotlin/io/papermc/paperweight/userdev/internal/setup/action/FilterVanillaJarAction.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/paperweight/HEAD/paperweight-userdev/src/main/kotlin/io/papermc/paperweight/userdev/internal/setup/action/FilterVanillaJarAction.kt -------------------------------------------------------------------------------- /paperweight-userdev/src/main/kotlin/io/papermc/paperweight/userdev/internal/setup/action/FixMinecraftJarAction.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/paperweight/HEAD/paperweight-userdev/src/main/kotlin/io/papermc/paperweight/userdev/internal/setup/action/FixMinecraftJarAction.kt -------------------------------------------------------------------------------- /paperweight-userdev/src/main/kotlin/io/papermc/paperweight/userdev/internal/setup/action/GenerateMappingsAction.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/paperweight/HEAD/paperweight-userdev/src/main/kotlin/io/papermc/paperweight/userdev/internal/setup/action/GenerateMappingsAction.kt -------------------------------------------------------------------------------- /paperweight-userdev/src/main/kotlin/io/papermc/paperweight/userdev/internal/setup/action/RemapMinecraftAction.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/paperweight/HEAD/paperweight-userdev/src/main/kotlin/io/papermc/paperweight/userdev/internal/setup/action/RemapMinecraftAction.kt -------------------------------------------------------------------------------- /paperweight-userdev/src/main/kotlin/io/papermc/paperweight/userdev/internal/setup/action/RunCodebookAction.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/paperweight/HEAD/paperweight-userdev/src/main/kotlin/io/papermc/paperweight/userdev/internal/setup/action/RunCodebookAction.kt -------------------------------------------------------------------------------- /paperweight-userdev/src/main/kotlin/io/papermc/paperweight/userdev/internal/setup/action/RunPaperclipAction.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/paperweight/HEAD/paperweight-userdev/src/main/kotlin/io/papermc/paperweight/userdev/internal/setup/action/RunPaperclipAction.kt -------------------------------------------------------------------------------- /paperweight-userdev/src/main/kotlin/io/papermc/paperweight/userdev/internal/setup/action/SetupMacheSourcesAction.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/paperweight/HEAD/paperweight-userdev/src/main/kotlin/io/papermc/paperweight/userdev/internal/setup/action/SetupMacheSourcesAction.kt -------------------------------------------------------------------------------- /paperweight-userdev/src/main/kotlin/io/papermc/paperweight/userdev/internal/setup/action/VanillaServerDownloads.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/paperweight/HEAD/paperweight-userdev/src/main/kotlin/io/papermc/paperweight/userdev/internal/setup/action/VanillaServerDownloads.kt -------------------------------------------------------------------------------- /paperweight-userdev/src/main/kotlin/io/papermc/paperweight/userdev/internal/setup/v2/DevBundleV2.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/paperweight/HEAD/paperweight-userdev/src/main/kotlin/io/papermc/paperweight/userdev/internal/setup/v2/DevBundleV2.kt -------------------------------------------------------------------------------- /paperweight-userdev/src/main/kotlin/io/papermc/paperweight/userdev/internal/setup/v2/SetupHandlerImplV2.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/paperweight/HEAD/paperweight-userdev/src/main/kotlin/io/papermc/paperweight/userdev/internal/setup/v2/SetupHandlerImplV2.kt -------------------------------------------------------------------------------- /paperweight-userdev/src/main/kotlin/io/papermc/paperweight/userdev/internal/setup/v5/DevBundleV5.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/paperweight/HEAD/paperweight-userdev/src/main/kotlin/io/papermc/paperweight/userdev/internal/setup/v5/DevBundleV5.kt -------------------------------------------------------------------------------- /paperweight-userdev/src/main/kotlin/io/papermc/paperweight/userdev/internal/setup/v5/SetupHandlerImplV5.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/paperweight/HEAD/paperweight-userdev/src/main/kotlin/io/papermc/paperweight/userdev/internal/setup/v5/SetupHandlerImplV5.kt -------------------------------------------------------------------------------- /paperweight-userdev/src/main/kotlin/io/papermc/paperweight/userdev/internal/util/FixJar.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/paperweight/HEAD/paperweight-userdev/src/main/kotlin/io/papermc/paperweight/userdev/internal/util/FixJar.kt -------------------------------------------------------------------------------- /paperweight-userdev/src/main/kotlin/io/papermc/paperweight/userdev/internal/util/ParameterAnnotationFixer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/paperweight/HEAD/paperweight-userdev/src/main/kotlin/io/papermc/paperweight/userdev/internal/util/ParameterAnnotationFixer.kt -------------------------------------------------------------------------------- /paperweight-userdev/src/main/kotlin/io/papermc/paperweight/userdev/internal/util/utils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/paperweight/HEAD/paperweight-userdev/src/main/kotlin/io/papermc/paperweight/userdev/internal/util/utils.kt -------------------------------------------------------------------------------- /paperweight-userdev/src/test/kotlin/io/papermc/paperweight/userdev/PaperweightUserTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/paperweight/HEAD/paperweight-userdev/src/test/kotlin/io/papermc/paperweight/userdev/PaperweightUserTest.kt -------------------------------------------------------------------------------- /paperweight-userdev/src/test/kotlin/io/papermc/paperweight/userdev/internal/action/WorkDispatcherTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/paperweight/HEAD/paperweight-userdev/src/test/kotlin/io/papermc/paperweight/userdev/internal/action/WorkDispatcherTest.kt -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/paperweight/HEAD/readme.md -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/paperweight/HEAD/renovate.json -------------------------------------------------------------------------------- /settings.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PaperMC/paperweight/HEAD/settings.gradle.kts --------------------------------------------------------------------------------