File tree Expand file tree Collapse file tree 2 files changed +18
-5
lines changed 
plugins/dataframe-gradle-plugin Expand file tree Collapse file tree 2 files changed +18
-5
lines changed Original file line number Diff line number Diff line change @@ -161,3 +161,14 @@ kotlinPublications {
161161kotlin {
162162 explicitApi()
163163}
164+ 
165+ val  instrumentedJars:  Configuration  by configurations.creating {
166+  isCanBeConsumed =  true 
167+  isCanBeResolved =  false 
168+ }
169+ 
170+ artifacts {
171+  add(" instrumentedJars"  , tasks.jar.get().archiveFile) {
172+  builtBy(tasks.jar)
173+  }
174+ }
Original file line number Diff line number Diff line change @@ -54,11 +54,13 @@ tasks.withType<ProcessResources> {
5454 filter {
5555 it.replace(
5656 " %DATAFRAME_JAR%"  ,
57-  project(" :core"  ).configurations
58-  .getByName(" instrumentedJars"  )
59-  .artifacts.single()
60-  .file.absolutePath
61-  .replace(File .separatorChar, ' /'  ),
57+  listOf (" :core"  , " :dataframe-csv"  ).joinToString(" \" , \" "  ) {
58+  project(it).configurations
59+  .getByName(" instrumentedJars"  )
60+  .artifacts.single()
61+  .file.absolutePath
62+  .replace(File .separatorChar, ' /'  )
63+  },
6264 )
6365 }
6466 }
                                 You can’t perform that action at this time. 
               
                  
0 commit comments