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

chore: update GRADLE_MIN_VERSION in check and test suite to 4.0 #453

Merged
merged 5 commits into from
Jul 4, 2023
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
*/
public class AppEnginePlugin implements Plugin<Project> {

private static final GradleVersion GRADLE_MIN_VERSION = GradleVersion.version("3.4.1");
private static final GradleVersion GRADLE_MIN_VERSION = GradleVersion.version("4.0");

@Override
public void apply(Project project) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
*/
public class AppEngineCorePluginConfiguration {

public static final GradleVersion GRADLE_MIN_VERSION = GradleVersion.version("3.4.1");
public static final GradleVersion GRADLE_MIN_VERSION = GradleVersion.version("4.0");

public static final String LOGIN_TASK_NAME = "appengineCloudSdkLogin";
public static final String DEPLOY_TASK_NAME = "appengineDeploy";
Expand Down