You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
which can muck up dependent gradle build scripts a little, since I would like to assume that there is only one OneJar output. So right now I have to filter out the temporary file to get the singleFile that I am expecting.
outputs.files.filter{ it.exists() }.singleFile
Might be nothing. The last line isn't a huge deal, but might be problematic down the road for other build scripts if they reference oneJar.outputs which includes a reference to a non-existent file.
The text was updated successfully, but these errors were encountered:
Small thing. Not sure what the gradle-recommended behavior is here.
includes an ephemeral file
which can muck up dependent gradle build scripts a little, since I would like to assume that there is only one OneJar output. So right now I have to filter out the temporary file to get the
singleFile
that I am expecting.Might be nothing. The last line isn't a huge deal, but might be problematic down the road for other build scripts if they reference oneJar.outputs which includes a reference to a non-existent file.
The text was updated successfully, but these errors were encountered: