Skip to content

Commit

Permalink
Merge branch 'release'
Browse files Browse the repository at this point in the history
  • Loading branch information
Daniel Lacasse committed Jul 3, 2018
2 parents 8e4e5fe + fe39671 commit 5a776b3
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 3 deletions.
Binary file modified gradle/wrapper/gradle-wrapper.jar
Binary file not shown.
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions-snapshots/gradle-4.9-20180624235932+0000-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-4.9-rc-1-bin.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@

import com.google.common.base.Predicate;
import com.google.common.collect.Iterators;
import com.google.common.collect.Sets;
import groovy.lang.Closure;
import org.apache.commons.lang.StringUtils;
import org.codehaus.groovy.runtime.DefaultGroovyMethods;
Expand All @@ -33,6 +32,7 @@
import org.gradle.api.specs.Specs;
import org.gradle.api.tasks.StopExecutionException;
import org.gradle.api.tasks.TaskDependency;
import org.gradle.util.CollectionUtils;
import org.gradle.util.DeprecationLogger;
import org.gradle.util.GUtil;

Expand Down Expand Up @@ -258,7 +258,7 @@ public TaskDependency getBuildDependencies() {

@Override
public Set<File> getFiles() {
return Sets.filter(AbstractFileCollection.this.getFiles(), predicate);
return CollectionUtils.filter(AbstractFileCollection.this, new LinkedHashSet<File>(), filterSpec);
}

@Override
Expand Down
3 changes: 3 additions & 0 deletions subprojects/docs/src/docs/release/release-features.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
- Experimental APIs for creating and configuring tasks lazily
- Pass arguments to JavaExec via CLI
- Improved dependency insight report

0 comments on commit 5a776b3

Please sign in to comment.