Skip to content

Commit

Permalink
Publish sources and javadoc
Browse files Browse the repository at this point in the history
  • Loading branch information
jakobkmar committed Dec 12, 2021
1 parent 69d9be0 commit 5a1cace
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
2 changes: 2 additions & 0 deletions build.gradle.kts
Expand Up @@ -71,6 +71,8 @@ publishing {
publications {
create<MavenPublication>(project.name) {
artifact(tasks.reobfJar)
artifact(tasks.named("javadocJar"))
artifact(tasks.named("sourcesJar"))

this.groupId = project.group.toString()
this.artifactId = project.name.toLowerCase()
Expand Down
6 changes: 3 additions & 3 deletions guide/docs/migration/1_17_to_1_18.md
Expand Up @@ -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()
Expand All @@ -16,7 +16,7 @@ pluginManagement {
```

`build.gradle.kts`
```kt
```kotlin
plugins {
id("io.papermc.paperweight.userdev") version "VERSION"
}
Expand All @@ -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
Expand Down

0 comments on commit 5a1cace

Please sign in to comment.