Skip to content

Commit

Permalink
Merge pull request #6 from 2BAB/dev
Browse files Browse the repository at this point in the history
Fix: ALL_JAVA_RES merged result does not pass to the final data
  • Loading branch information
2BAB committed Apr 1, 2022
2 parents 0ed773a + 255a0bb commit c4935bd
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Expand Up @@ -12,7 +12,7 @@ object BuildConfig {
}

object Versions {
const val polyfillDevVersion = "0.6.1"
const val polyfillDevVersion = "0.6.2"

val polyfillSourceCompatibilityVersion = JavaVersion.VERSION_1_8
val polyfillTargetCompatibilityVersion = JavaVersion.VERSION_1_8
Expand Down
Expand Up @@ -42,8 +42,8 @@ class JavaResourceMergePreHookConfigureAction(
val externalDepJavaResList = mergeTask.externalLibJavaRes
?.getRegularFiles(project.rootProject.layout.projectDirectory)
?: project.objects.listProperty()
subProjectsJavaResList.zip(externalDepJavaResList) { a, b -> a + b }
(data as ListProperty<RegularFile>).set(subProjectsJavaResList)
val all = subProjectsJavaResList.zip(externalDepJavaResList) { a, b -> a + b }
(data as ListProperty<RegularFile>).set(all)


// Setup dependencies
Expand Down

0 comments on commit c4935bd

Please sign in to comment.