Skip to content

Commit 74688b9

Browse files
committed
Update the pom
1 parent 2c4c980 commit 74688b9

File tree

1 file changed

+36
-18
lines changed

1 file changed

+36
-18
lines changed

build.gradle.kts

Lines changed: 36 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -152,28 +152,46 @@ subprojects {
152152
}
153153
}
154154

155-
publications.all {
156-
this as MavenPublication
157-
158-
pom {
159-
160-
url.set("https://github.com/GitLiveApp/firebase-kotlin-sdk")
161-
162-
scm {
155+
publications.all {
156+
this as MavenPublication
157+
158+
pom {
159+
name.set("firebase-kotlin-sdk")
160+
description.set("The Firebase Kotlin SDK is a Kotlin-first SDK for Firebase. It's API is similar to the Firebase Android SDK Kotlin Extensions but also supports multiplatform projects, enabling you to use Firebase directly from your common source targeting iOS, Android or JS.")
163161
url.set("https://github.com/GitLiveApp/firebase-kotlin-sdk")
164-
connection.set("scm:git:https://github.com/GitLiveApp/firebase-kotlin-sdk.git")
165-
developerConnection.set("scm:git:https://github.com/GitLiveApp/firebase-kotlin-sdk.git")
166-
tag.set("HEAD")
167-
}
162+
inceptionYear.set("2009")
163+
164+
scm {
165+
url.set("https://github.com/GitLiveApp/firebase-kotlin-sdk")
166+
connection.set("scm:git:https://github.com/GitLiveApp/firebase-kotlin-sdk.git")
167+
developerConnection.set("scm:git:https://github.com/GitLiveApp/firebase-kotlin-sdk.git")
168+
tag.set("HEAD")
169+
}
170+
171+
issueManagement {
172+
system.set("GitHub Issues")
173+
url.set("https://github.com/GitLiveApp/firebase-kotlin-sdk/issues")
174+
}
175+
176+
developers {
177+
developer {
178+
name.set("Nicholas Bransby-Williams")
179+
email.set("[email protected]")
180+
}
181+
}
182+
183+
licenses {
184+
license {
185+
name.set("The Apache Software License, Version 2.0")
186+
url.set("http://www.apache.org/licenses/LICENSE-2.0.txt")
187+
distribution.set("repo")
188+
comments.set("A business-friendly OSS license")
189+
}
190+
}
168191

169-
issueManagement {
170-
system.set("GitHub Issues")
171-
url.set("https://github.com/GitLiveApp/firebase-kotlin-sdk/issues")
172192
}
173-
174193
}
175-
176-
}
194+
177195

178196
}
179197

0 commit comments

Comments
 (0)