Slackbot
06/08/2023, 11:36 AMmelix
06/08/2023, 12:12 PMprovider<File> to a ConfigurableFileCollectionmelix
06/08/2023, 12:13 PMmyFiles.from(providers.provider { someFile })Vampire
06/08/2023, 12:13 PMAnze Sodja
06/08/2023, 1:18 PMConfigurableFileCollection no need for ProviderJavi
06/08/2023, 2:48 PMmyFiles.from(providers.provider { someFile }) this is not working as expected in my case as I was already doing thatJavi
06/08/2023, 2:49 PMprovider { ... } I was picking up the kotlin source sets lazily, they were null. After moving to Provider<Set<File>> it started to workJavi
06/08/2023, 2:49 PMget() before it should do thatJavi
06/08/2023, 2:51 PMmap, filter and so on, are you calling eagerly to the provider we put? I think soJavi
06/08/2023, 2:52 PMAnze Sodja
06/08/2023, 2:58 PMAnze Sodja
06/08/2023, 3:02 PM