Browse Source

Add pom information and license to Web artifacts (#2195)

* Add pom information and license to Web artifacts

* Update build.gradle.kts

Co-authored-by: hfhbd <hfhbd@users.noreply.github.com>
pull/2302/head
Philip Wedemann 2 years ago committed by GitHub
parent
commit
ca03e09c86
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 27
      web/build.gradle.kts

27
web/build.gradle.kts

@ -70,6 +70,33 @@ subprojects {
}
}
}
publications.all {
this as MavenPublication
pom {
name.set("JetBrains Compose Multiplatform")
description.set("JetBrains Compose Multiplatform for Web")
url.set("https://www.jetbrains.com/lp/compose-mpp/")
licenses {
license {
name.set("Apache-2.0")
url.set("https://www.apache.org/licenses/LICENSE-2.0.txt")
}
}
developers {
developer {
id.set("JetBrains")
name.set("JetBrains Compose Team")
organization.set("JetBrains")
organizationUrl.set("https://www.jetbrains.com")
}
}
scm {
connection.set("scm:git://github.com/JetBrains/compose-jb.git")
developerConnection.set("scm:git://github.com/JetBrains/compose-jb.git")
url.set("https://github.com/jetbrains/compose-jb")
}
}
}
}
}

Loading…
Cancel
Save