File tree Expand file tree Collapse file tree 1 file changed +17
-3
lines changed Expand file tree Collapse file tree 1 file changed +17
-3
lines changed Original file line number Diff line number Diff line change @@ -24,9 +24,9 @@ plugins {
24
24
alias(korro)
25
25
alias(ktlint)
26
26
// Compiler plugin doesn't work properly for now: https://github.com/Kotlin/dataframe/issues/1432
27
- // alias(dataframePlugin )
27
+ alias(dataframe.compiler.plugin )
28
28
// using deprecated gradle plugin instead
29
- alias(dataframe)
29
+ // alias(dataframe)
30
30
// alias(kover)
31
31
alias(ksp)
32
32
}
@@ -37,8 +37,22 @@ repositories {
37
37
mavenLocal() // for local development
38
38
}
39
39
40
+ tasks.compileKotlin {
41
+ dependsOn(projects.core.path + " :jar" )
42
+ }
43
+
44
+ val coreJar = project(projects.core.path).configurations
45
+ .getByName(" instrumentedJars" )
46
+ .artifacts.single()
47
+ .file.absolutePath
48
+ .replace(File .separatorChar, ' /' )
49
+
40
50
dependencies {
41
- implementation(projects.dataframe)
51
+ implementation(projects.dataframe) {
52
+ // exclude(group, "dataframe-core")
53
+ }
54
+ implementation(files(coreJar))
55
+
42
56
testImplementation(libs.junit)
43
57
testImplementation(libs.kotestAssertions) {
44
58
exclude(" org.jetbrains.kotlin" , " kotlin-stdlib-jdk8" )
You can’t perform that action at this time.
0 commit comments