Skip to content
Snippets Groups Projects
Verified Commit ad510d72 authored by KitsuneAlex's avatar KitsuneAlex
Browse files

Add publishing configuration

parent 92d40845
No related branches found
No related tags found
No related merge requests found
Pipeline #2268 passed
import java.net.URI
/*
* Copyright 2025 (C) Karma Krafts & associates
*
......@@ -55,4 +57,47 @@ System.getenv("CI_PROJECT_ID")?.let {
tasks {
val dependenciesForAll by registering(DependencyReportTask::class)
}
}
publishing {
repositories {
System.getenv("CI_API_V4_URL")?.let { apiUrl ->
maven {
url = URI.create("$apiUrl/projects/${System.getenv("CI_PROJECT_ID")}/packages/maven")
name = "GitLab"
credentials(HttpHeaderCredentials::class) {
name = "Job-Token"
value = System.getenv("CI_JOB_TOKEN")
}
authentication {
create("header", HttpHeaderAuthentication::class)
}
}
}
}
publications.configureEach {
if (this is MavenPublication) {
pom {
name = project.name
description = "Karma Krafts conventions and utilities plugin for Gradle."
url = System.getenv("CI_PROJECT_URL")
licenses {
license {
name = "Apache License 2.0"
url = "https://www.apache.org/licenses/LICENSE-2.0"
}
}
developers {
developer {
id = "kitsunealex"
name = "KitsuneAlex"
url = "https://git.karmakrafts.dev/KitsuneAlex"
}
}
scm {
url = this@pom.url
}
}
}
}
}
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment