File tree 2 files changed +18
-5
lines changed
plugins/dataframe-gradle-plugin
2 files changed +18
-5
lines changed Original file line number Diff line number Diff line change @@ -161,3 +161,14 @@ kotlinPublications {
161
161
kotlin {
162
162
explicitApi()
163
163
}
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> {
54
54
filter {
55
55
it.replace(
56
56
" %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
+ },
62
64
)
63
65
}
64
66
}
You can’t perform that action at this time.
0 commit comments