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
Fix Gradle 9 FileCollectionDependency in netbeans-gradle-tooling
FileCollectionDependency::resolve had been deprecated, and was removed
in Gradle 9. That method returned a Set<java.io.File>. It also has,
since Gradle 3.3, a getFiles() method that returns a FileCollection.
FileCollection implements Iterable<java.io.File> to get what we need.
Copy file name to clipboardExpand all lines: extide/gradle/netbeans-gradle-tooling/src/main/java/org/netbeans/modules/gradle/tooling/NbProjectInfoBuilder.java
0 commit comments