diff --git a/build.gradle.kts b/build.gradle.kts index 287934e4..bc039bf1 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -71,6 +71,8 @@ publishing { publications { create(project.name) { artifact(tasks.reobfJar) + artifact(tasks.named("javadocJar")) + artifact(tasks.named("sourcesJar")) this.groupId = project.group.toString() this.artifactId = project.name.toLowerCase() diff --git a/guide/docs/migration/1_17_to_1_18.md b/guide/docs/migration/1_17_to_1_18.md index eb99af9c..4644f6cf 100644 --- a/guide/docs/migration/1_17_to_1_18.md +++ b/guide/docs/migration/1_17_to_1_18.md @@ -6,7 +6,7 @@ Please use this library together with the paperweight Gradle plugin, as it remap jar to mojmap, and adds all necessary dependencies with one bundle! `settings.gradle.kts` -```kt +```kotlin pluginManagement { repositories { gradlePluginPortal() @@ -16,7 +16,7 @@ pluginManagement { ``` `build.gradle.kts` -```kt +```kotlin plugins { id("io.papermc.paperweight.userdev") version "VERSION" } @@ -33,7 +33,7 @@ The wrapper for nbt compounds has been removed, use `CompoundTag` of net.minecra ## Upcoming features -Due to paper now being binary compatible with all other Minecraft modding toolchains, expect to see features +Due to Paper now being binary compatible with all other Minecraft modding toolchains, expect to see features from [FabrikMC](https://jakobkmar.github.io/fabrikmc/) on the paper side! ## Paper first policy