File tree Expand file tree Collapse file tree 1 file changed +27
-0
lines changed Expand file tree Collapse file tree 1 file changed +27
-0
lines changed Original file line number Diff line number Diff line change @@ -45,4 +45,31 @@ val javadocJar by tasks.registering(Jar::class) {
4545
4646publishing.publications.withType<MavenPublication > {
4747 artifact(javadocJar)
48+
49+ pom {
50+ name.set(" Compose for Web Material" )
51+ description.set(" Some Material components for Compose for Web" )
52+ val githubUrl = " https://github.com/huanshankeji/compose-web-material"
53+ url.set(githubUrl)
54+
55+ licenses {
56+ license {
57+ name.set(" The Apache License, Version 2.0" )
58+ url.set(" http://www.apache.org/licenses/LICENSE-2.0.txt" )
59+ }
60+ }
61+ developers {
62+ developer {
63+ id.set(" ShreckYe" )
64+ name.set(" Shreck Ye" )
65+ 66+ }
67+ }
68+ scm {
69+ val scmString = " scm:git:$githubUrl .git"
70+ connection.set(scmString)
71+ developerConnection.set(scmString)
72+ url.set(githubUrl)
73+ }
74+ }
4875}
You can’t perform that action at this time.
0 commit comments