Skip to content

Commit 3ced488

Browse files
committed
chore(build): remove unnecessary blank lines in build script
Clean up formatting by deleting extra blank lines in `build.gradle.kts` for better readability.
1 parent 62fc6ed commit 3ced488

File tree

1 file changed

+4
-6
lines changed

1 file changed

+4
-6
lines changed

build.gradle.kts

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
import nl.littlerobots.vcu.plugin.resolver.VersionSelectors
22

33
plugins {
4-
54
`maven-publish`
65
// trick: for the same plugin versions in all sub-modules
76
alias(libs.plugins.androidLibrary).apply(false)
@@ -78,29 +77,28 @@ kover {
7877
}
7978
}
8079

81-
8280
centralPublisher {
8381
credentials {
8482
username = project.findProperty("SONATYPE_USERNAME")?.toString() ?: ""
8583
password = project.findProperty("SONATYPE_PASSWORD")?.toString() ?: ""
8684
}
87-
85+
8886
projectInfo {
8987
name = "openai-kotlin"
9088
description = "OpenAI API KMP Client"
9189
url = "https://github.com/tddworks/openai-kotlin"
92-
90+
9391
license {
9492
name = "The Apache Software License, Version 2.0"
9593
url = "https://github.com/tddworks/openai-kotlin/blob/main/LICENSE"
9694
}
97-
95+
9896
developer {
9997
id = "tddworks"
10098
name = "itshan"
10199
102100
}
103-
101+
104102
scm {
105103
url = "https://github.com/tddworks/openai-kotlin"
106104
connection = "scm:git:git://github.com/tddworks/openai-kotlin.git"

0 commit comments

Comments
 (0)