Skip to content
This repository has been archived by the owner on Feb 21, 2022. It is now read-only.

Commit

Permalink
Merge 2db46be into 95671cb
Browse files Browse the repository at this point in the history
  • Loading branch information
szpak committed Dec 6, 2016
2 parents 95671cb + 2db46be commit 7a5a903
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,10 @@ cache:

env:
- GRADLE_VERSION=1.12
- GRADLE_VERSION=2.4
- GRADLE_VERSION=2.5
- GRADLE_VERSION=2.6
- GRADLE_VERSION=2.7
- GRADLE_VERSION=2.0
- GRADLE_VERSION=2.14.1
- GRADLE_VERSION=3.0
- GRADLE_VERSION=3.2.1

before_install:
- echo -e "\ndistributionUrl=http\://services.gradle.org/distributions/gradle-$GRADLE_VERSION-bin.zip" >> gradle/wrapper/gradle-wrapper.properties
Expand Down
2 changes: 1 addition & 1 deletion src/main/groovy/com/ofg/uptodate/UptodatePlugin.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ class UptodatePlugin implements Plugin<Project> {
void apply(Project project) {
project.extensions.create(TASK_NAME, UptodatePluginExtension)
UptodatePluginExtension uptodatePluginExtension = project.extensions.uptodate
Task createdTask = project.task(TASK_NAME) << { Task task ->
Task createdTask = project.task(TASK_NAME).doLast { Task task ->
printMissingJCenterRepoIfApplicable(uptodatePluginExtension, project)
List<Dependency> dependencies = getDependencies(project)
if (uptodatePluginExtension.findBuildDependencies) {
Expand Down

0 comments on commit 7a5a903

Please sign in to comment.