Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

LPD-37083 Update Blade CLI to use the rest-builder Project Templates with greater version ranges #343

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
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
4 changes: 2 additions & 2 deletions .github/workflows/verify.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion cli/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down
Loading