We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 09def22 commit cc8816fCopy full SHA for cc8816f
dataframe-arrow/build.gradle.kts
@@ -1,10 +1,9 @@
1
plugins {
2
- kotlin("jvm") apply true
+ kotlin("jvm")
3
+ kotlin("libs.publisher")
4
}
5
-repositories {
6
- mavenCentral()
7
-}
+group = "org.jetbrains.kotlinx"
8
9
dependencies {
10
api(project(":"))
@@ -20,3 +19,12 @@ dependencies {
20
19
exclude("org.jetbrains.kotlin", "kotlin-stdlib-jdk8")
21
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