Skip to content

Commit 65ee6d4

Browse files
committed
migrating :symbol-processor build.gradle to kts
1 parent 85010a0 commit 65ee6d4

File tree

1 file changed

+17
-17
lines changed

1 file changed

+17
-17
lines changed

plugins/symbol-processor/build.gradle renamed to plugins/symbol-processor/build.gradle.kts

Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
1-
import org.jetbrains.kotlinx.publisher.PomUtilKt
1+
import org.jetbrains.kotlinx.publisher.apache2
2+
import org.jetbrains.kotlinx.publisher.developer
3+
import org.jetbrains.kotlinx.publisher.githubRepo
24

35
plugins {
46
alias(libs.plugins.shadow)
@@ -9,8 +11,8 @@ plugins {
911

1012
repositories {
1113
mavenCentral()
12-
maven { url = "https://jitpack.io" }
13-
maven { url "https://maven.pkg.jetbrains.space/public/p/kotlinx-html/maven" }
14+
maven(url = "https://jitpack.io")
15+
maven(url = "https://maven.pkg.jetbrains.space/public/p/kotlinx-html/maven")
1416
}
1517

1618
group = "org.jetbrains.kotlinx.dataframe"
@@ -34,23 +36,21 @@ dependencies {
3436

3537
kotlinPublications {
3638
pom {
37-
use(PomUtilKt) {
38-
githubRepo("Kotlin", "dataframe")
39-
inceptionYear.set("2021")
40-
licenses {
41-
apache2()
42-
}
43-
developers {
44-
developer("koperagen", "Nikita Klimenko", "nikita.klimenko@jetbrains.com")
45-
}
39+
githubRepo("Kotlin", "dataframe")
40+
inceptionYear = "2021"
41+
licenses {
42+
apache2()
43+
}
44+
developers {
45+
developer("koperagen", "Nikita Klimenko", "nikita.klimenko@jetbrains.com")
4646
}
4747
}
4848

4949
publication {
50-
groupId.set("org.jetbrains.kotlinx.dataframe")
51-
publicationName.set("maven")
52-
artifactId.set("symbol-processor-all")
53-
description.set("Annotation preprocessor for DataFrame")
54-
packageName.set(artifactId)
50+
groupId = "org.jetbrains.kotlinx.dataframe"
51+
publicationName = "maven"
52+
artifactId = "symbol-processor-all"
53+
description = "Annotation preprocessor for DataFrame"
54+
packageName = artifactId
5555
}
5656
}

0 commit comments

Comments
 (0)