Skip to content

Commit 76165a0

Browse files
committed
Change build.gradle.kts
1 parent 76aefbe commit 76165a0

2 files changed

Lines changed: 5 additions & 2 deletions

File tree

build.gradle.kts

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ val namespace = "io.github.kiber2009"
1717

1818
group = "$namespace.plugin"
1919
version = "1.1.0"
20+
description = "API for adding custom content to PaperMC-based servers"
2021

2122
val mcVersion = "26.1.2"
2223
val pluginId = "ContentAPI"
@@ -71,7 +72,8 @@ tasks {
7172
"version" to version,
7273
"mcVersion" to mcVersion,
7374
"pluginId" to pluginId,
74-
"author" to author
75+
"author" to author,
76+
"description" to project.description
7577
)
7678
inputs.properties(props)
7779
filteringCharset = "UTF-8"
@@ -134,7 +136,7 @@ publishing {
134136
from(components["java"])
135137
pom {
136138
name = "ContentAPI"
137-
description = "API for adding custom content to PaperMC-based servers"
139+
description = project.description
138140
url = "https://github.com/Kiber2009/ContentAPI"
139141
licenses {
140142
license {

src/main/resources/plugin.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,3 +3,4 @@ version: $version
33
main: io.github.kiber2009.plugin.contentapi.ContentApiPlugin
44
api-version: $mcVersion
55
author: $author
6+
description: $description

0 commit comments

Comments
 (0)