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

Commit

Permalink
Fix missing Gradle workspace tasks input
Browse files Browse the repository at this point in the history
  • Loading branch information
ayltai committed Jul 8, 2020
1 parent 7280202 commit 6ee1f2e
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ plugins {
}

group 'com.github.ayltai'
version '0.2.1'
version '0.2.2'

sourceCompatibility = 8
targetCompatibility = 8
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -142,6 +142,7 @@ private static void registerListWorkspaceTask(@Nonnull final Project project, @N
task.dependsOn(DownloadTask.TASK_NAME);

task.source.set(extension.getSource());
task.noColor.set(false);
});
}

Expand All @@ -152,6 +153,7 @@ private static void registerShowWorkspaceTask(@Nonnull final Project project, @N
task.dependsOn(DownloadTask.TASK_NAME);

task.source.set(extension.getSource());
task.noColor.set(false);
});
}

Expand All @@ -162,6 +164,7 @@ private static void registerSelectWorkspaceTask(@Nonnull final Project project,
task.dependsOn(DownloadTask.TASK_NAME);

task.source.set(extension.getSource());
task.noColor.set(false);
task.workspace.set(extension.getWorkspace());
});
}
Expand All @@ -173,6 +176,7 @@ private static void registerNewWorkspaceTask(@Nonnull final Project project, @No
task.dependsOn(DownloadTask.TASK_NAME);

task.source.set(extension.getSource());
task.noColor.set(false);
task.workspace.set(extension.getWorkspace());
});
}
Expand All @@ -184,6 +188,7 @@ private static void registerDeleteWorkspaceTask(@Nonnull final Project project,
task.dependsOn(DownloadTask.TASK_NAME);

task.source.set(extension.getSource());
task.noColor.set(false);
task.workspace.set(extension.getWorkspace());
});
}
Expand Down

0 comments on commit 6ee1f2e

Please sign in to comment.