mirror of
https://github.com/xHyroM/lighteco.git
synced 2024-11-10 01:18:07 +01:00
ci: more things in pom, set project descriptions
This commit is contained in:
parent
1f0f663b06
commit
2b9beb74da
2 changed files with 33 additions and 1 deletions
|
@ -13,9 +13,11 @@ val commitHash = determineCommitHash(project)
|
||||||
allprojects {
|
allprojects {
|
||||||
group = "dev.xhyrom"
|
group = "dev.xhyrom"
|
||||||
version = "$majorVersion.$minorVersion.$patchVersion"
|
version = "$majorVersion.$minorVersion.$patchVersion"
|
||||||
|
description = "Incredibly fast, lightweight, and modular plugin that excels across multiple platforms."
|
||||||
|
|
||||||
ext {
|
ext {
|
||||||
set("version", "$majorVersion.$minorVersion.$patchVersion+$commitHash")
|
set("version", "$majorVersion.$minorVersion.$patchVersion+$commitHash")
|
||||||
|
set("description", description)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -43,7 +43,37 @@ publishing {
|
||||||
|
|
||||||
pom {
|
pom {
|
||||||
name.set("LightEco")
|
name.set("LightEco")
|
||||||
|
url.set("https://github.com/xHyroM/lighteco")
|
||||||
|
description.set(project.description)
|
||||||
|
organization {
|
||||||
|
name.set("xHyroM")
|
||||||
|
url.set("https://xhyrom.dev")
|
||||||
|
}
|
||||||
|
developers {
|
||||||
|
developer {
|
||||||
|
id.set("xHyroM")
|
||||||
|
name.set("xHyroM")
|
||||||
|
email.set("lol@xhyrom.dev")
|
||||||
|
timezone.set("Europe/Bratislava")
|
||||||
|
url.set("https://xhyrom.dev")
|
||||||
|
}
|
||||||
|
}
|
||||||
|
scm {
|
||||||
|
connection.set("scm:git:https://github.com/xHyroM/lighteco.git")
|
||||||
|
developerConnection.set("scm:git:git@github.com:xHyroM/lighteco.git")
|
||||||
|
url.set("https://github.com/xHyroM/lighteco")
|
||||||
|
}
|
||||||
|
licenses {
|
||||||
|
license {
|
||||||
|
name.set("Apache License 2.0")
|
||||||
|
url.set("https://github.com/xHyroM/lighteco/blob/main/LICENSE")
|
||||||
|
distribution.set("repo")
|
||||||
|
}
|
||||||
|
}
|
||||||
|
ciManagement {
|
||||||
|
system.set("GitHub Actions")
|
||||||
|
url.set("https://github.com/xHyroM/lighteco/actions")
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
artifact(tasks.named("jar")) {
|
artifact(tasks.named("jar")) {
|
||||||
|
|
Loading…
Reference in a new issue