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
This code seems to resolve the buildDir too early. When jf audit runs my gradle build, it resolves the build directory to <project>/build, whereas I've set it in my project to /target/build, as "build" was actually a directory created many years ago and can't be changed.
Perhaps better yet to store this variable as a DirectoryProperty as an input for the task, and let it dynamically be resolved to "target/build" as I have configured to be in my project (and run during afterEvaluate)?
The text was updated successfully, but these errors were encountered:
gradle-dep-tree/src/main/java/com/jfrog/tasks/GenerateDepTrees.java
Line 35 in 9f4dc78
This code seems to resolve the buildDir too early. When
jf audit
runs my gradle build, it resolves the build directory to<project>/build
, whereas I've set it in my project to /target/build, as "build" was actually a directory created many years ago and can't be changed.Perhaps better yet to store this variable as a DirectoryProperty as an input for the task, and let it dynamically be resolved to "target/build" as I have configured to be in my project (and run during afterEvaluate)?
The text was updated successfully, but these errors were encountered: