Skip to content

Commit cc8816f

Browse files
committed
Setup publication for Arrow support module
1 parent 09def22 commit cc8816f

File tree

1 file changed

+12
-4
lines changed

1 file changed

+12
-4
lines changed

dataframe-arrow/build.gradle.kts

Lines changed: 12 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,9 @@
11
plugins {
2-
kotlin("jvm") apply true
2+
kotlin("jvm")
3+
kotlin("libs.publisher")
34
}
45

5-
repositories {
6-
mavenCentral()
7-
}
6+
group = "org.jetbrains.kotlinx"
87

98
dependencies {
109
api(project(":"))
@@ -20,3 +19,12 @@ dependencies {
2019
exclude("org.jetbrains.kotlin", "kotlin-stdlib-jdk8")
2120
}
2221
}
22+
23+
kotlinPublications {
24+
publication {
25+
publicationName.set("dataframe-arrow")
26+
artifactId.set(project.name)
27+
description.set("Apache Arrow support for Kotlin Dataframe")
28+
packageName.set(artifactId)
29+
}
30+
}

0 commit comments

Comments
 (0)