File tree Expand file tree Collapse file tree 2 files changed +5
-0
lines changed Expand file tree Collapse file tree 2 files changed +5
-0
lines changed Original file line number Diff line number Diff line change @@ -224,6 +224,9 @@ allprojects {
224
224
logger.warn(" Could not set buildConfig on :${this .name} " )
225
225
}
226
226
227
+ // Adds the instrumentedJars configuration/artifact to all sub-projects with a `jar` task
228
+ // This allows other modules to depend on the output of this task, aka the compiled jar of that module
229
+ // Used in :plugins:dataframe-gradle-plugin integration tests and in :samples for compiler plugin support
227
230
try {
228
231
val instrumentedJars: Configuration by configurations.creating {
229
232
isCanBeConsumed = true
Original file line number Diff line number Diff line change @@ -52,6 +52,8 @@ tasks.withType<KotlinCompile> {
52
52
}
53
53
}
54
54
55
+ // get the output of the instrumentedJars configuration, aka the jar-files of the compiled modules
56
+ // all modules with jar-task have this artifact in the DataFrame project
55
57
val dependentProjectJarPaths = dependentProjects.map {
56
58
it.configurations
57
59
.getByName(" instrumentedJars" )
You can’t perform that action at this time.
0 commit comments