sitemap/build.gradle.kts
2024-08-01 19:24:58 +02:00

72 lines
No EOL
2.2 KiB
Text

plugins {
kotlin("jvm") version "2.0.0"
id("maven-publish")
}
group = "org.thundernetwork"
version = "1.0"
repositories {
maven("https://repository.thundernetwork.org/repository/maven-public")
}
dependencies {
// testImplementation(kotlin("test"))
}
tasks.test {
useJUnitPlatform()
}
kotlin {
jvmToolchain(17)
}
publishing {
repositories {
maven {
url = uri("https://repository.thundernetwork.org/repository/maven-releases")
credentials {
username = System.getenv("REPOSITORY_USERNAME")
password = System.getenv("REPOSITORY_PASSWORD")
}
}
}
publications {
create<MavenPublication>("mavenJava") {
pom {
name = "Sitemap"
description = "A simply collection of utils for sitemap creation written in Kotlin"
licenses {
license {
name = "The Apache License, Version 2.0"
url = "http://www.apache.org/licenses/LICENSE-2.0.txt"
}
}
developers {
developer {
id = "killerbossoriginal"
name = "KillerBossOriginal"
email = "killerbossoriginal@thundernetwork.org"
}
}
scm {
connection = "scm:git:git://github.com/ThunderNetworkRaD/sitemap.git"
developerConnection = "scm:git:ssh://github.com/ThunderNetworkRaD/sitemap.git"
url = "https://github.com/ThunderNetworkRaD/sitemap"
}
issueManagement {
system = "GitHub Issues"
url = "https://github.com/ThunderNetworkRaD/sitemap/issues"
}
ciManagement {
system = "GitHub Actions"
url = "https://github.com/ThunderNetworkRaD/sitemap/actions"
}
organization {
name = "ThunderNetwork"
url = "https://thundernetwork.org"
}
}
}
}
}