From ef5ba20bed7ab6a43ed1bc7b6815c534b9138061 Mon Sep 17 00:00:00 2001 From: Anna Suszter Date: Fri, 20 Sep 2024 19:22:35 +0200 Subject: [PATCH 1/3] LPD-37083 cli: build.gradle: bump com.liferay.project.templates to 5.1.2 --- cli/build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cli/build.gradle b/cli/build.gradle index cc9de0d78..ac0aade15 100644 --- a/cli/build.gradle +++ b/cli/build.gradle @@ -80,7 +80,7 @@ dependencies { api group: "biz.aQute.bnd", name: "biz.aQute.bndlib", version: "5.3.0" api group: "com.fasterxml.jackson.core", name: "jackson-databind", version: "2.16.1" api group: "com.liferay", name: "com.liferay.gogo.shell.client", version: "1.0.0" - api group: "com.liferay", name: "com.liferay.project.templates", version: "5.0.298" + api group: "com.liferay", name: "com.liferay.project.templates", version: "5.1.2" api group: "com.liferay", name: "com.liferay.release.util", version: "1.0.0" api group: "commons-io", name: "commons-io", version: "2.7" api group: "commons-lang", name: "commons-lang", version: "2.6" From db94a22048409c3ce48e7df42e7a8b48a168e017 Mon Sep 17 00:00:00 2001 From: Anna Suszter Date: Tue, 24 Sep 2024 17:42:15 +0200 Subject: [PATCH 2/3] LPD-37083 update outdated Github Actions plugin --- .github/workflows/verify.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/verify.yml b/.github/workflows/verify.yml index fe65bae59..932e52bca 100644 --- a/.github/workflows/verify.yml +++ b/.github/workflows/verify.yml @@ -89,7 +89,7 @@ jobs: run: | ./run-tests.sh - name: Upload tests zip - uses: actions/upload-artifact@v1 + uses: actions/upload-artifact@v3 if: failure() with: name: LinuxJDK11-tests.zip @@ -121,7 +121,7 @@ jobs: # run: | # ./run-tests.sh # - name: Upload tests zip - # uses: actions/upload-artifact@v1 + # uses: actions/upload-artifact@v3 # if: failure() # with: # name: MacOSJDK11-tests.zip From 17ca2b04f524d0e53e613d42068245e590f4d9c6 Mon Sep 17 00:00:00 2001 From: drewbrokke Date: Mon, 30 Sep 2024 12:38:18 -0500 Subject: [PATCH 3/3] LPD-37083 cli: bumps expected version of workspace in tests to 12.0.0 --- .../java/com/liferay/blade/cli/command/InitCommandTest.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cli/src/test/java/com/liferay/blade/cli/command/InitCommandTest.java b/cli/src/test/java/com/liferay/blade/cli/command/InitCommandTest.java index cb291bb83..d64c7526b 100644 --- a/cli/src/test/java/com/liferay/blade/cli/command/InitCommandTest.java +++ b/cli/src/test/java/com/liferay/blade/cli/command/InitCommandTest.java @@ -618,7 +618,7 @@ private void _verifyGradleBuild() throws Exception { GradleRunnerUtil.verifyBuildOutput(projectPath.toString(), "foo-1.0.0.jar"); } - private static final String _GRADLE_PLUGINS_WORKSPACE_VERSION = "10.1.7"; + private static final String _GRADLE_PLUGINS_WORKSPACE_VERSION = "12.0.0"; private File _extensionsDir = null; private File _workspaceDir = null;