-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpublishing.gradle.kts
More file actions
32 lines (29 loc) · 1005 Bytes
/
publishing.gradle.kts
File metadata and controls
32 lines (29 loc) · 1005 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
mavenPublishing {
coordinates(
groupId = "io.github.appspiriment",
artifactId = "utils",
version = libs.versions.appspirimentUtils.get()
)
pom {
name = "Appspiriment Utils"
description = "A library with common util functions and extension methods to help kotlin developers easily use them."
url = "https://github.com/appspiriment/AndroidConventionPlugins/tree/main/utils"
licenses {
license {
name = "The Apache License, Version 2.0"
url = "http://www.apache.org/licenses/LICENSE-2.0.txt"
}
}
developers {
developer {
id = "appspiriment"
name = "Appspiriment Labs"
email = "appspiriment@gmail.com"
}
}
}
// Configure publishing to Maven Central
publishToMavenCentral(SonatypeHost.CENTRAL_PORTAL)
// Enable GPG signing for all publications
signAllPublications()
}