Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
Karma Conventions
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Karma Krafts
Karma Conventions
Commits
ad510d72
Verified
Commit
ad510d72
authored
3 weeks ago
by
KitsuneAlex
Browse files
Options
Downloads
Patches
Plain Diff
Add publishing configuration
parent
92d40845
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Pipeline
#2268
passed
3 weeks ago
Stage: build
Stage: publish
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
build.gradle.kts
+45
-0
45 additions, 0 deletions
build.gradle.kts
with
45 additions
and
0 deletions
build.gradle.kts
+
45
−
0
View file @
ad510d72
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
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment