Skip to content

Commit

Permalink
LPD-29388 liferay-ide: fixes broken bundle URL
Browse files Browse the repository at this point in the history
  • Loading branch information
drewbrokke committed Aug 2, 2024
1 parent 40c1eb9 commit 68abafe
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -382,7 +382,7 @@ public void createLiferayWorkspaceWithDownloadBundleChangeBundleUrl() {
// Use the internal server instead of the public server and also need to append the internal host

String bundleUrl =
"http://ide-resources-site/portal/7.0.4-ga5/liferay-ce-portal-tomcat-7.0-ga5-20171018150113838.zip";
"https://releases-cdn.liferay.com/portal/7.0.4-ga5/liferay-ce-portal-tomcat-7.0-ga5-20171018150113838.zip";

wizardAction.openNewLiferayWorkspaceWizard();

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -416,7 +416,7 @@ public void createLiferayWorkspaceWithDownloadBundleChangeBundleUrl() {
// Use the internal server instead of the public server and also need to append the internal host

String bundleUrl =
"http://ide-resources-site/portal/7.0.4-ga5/liferay-ce-portal-tomcat-7.0-ga5-20171018150113838.zip";
"https://releases-cdn.liferay.com/portal/7.0.4-ga5/liferay-ce-portal-tomcat-7.0-ga5-20171018150113838.zip";

wizardAction.openNewLiferayWorkspaceWizard();

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ public void importLiferayWorkspaceWithDownloadBundle() throws IOException {
wizardAction.importLiferayWorkspace.prepare(project.getPath(), true, project.getName());

String bundleUrl =
"http://ide-resources-site/portal/7.0.4-ga5/liferay-ce-portal-tomcat-7.0-ga5-20171018150113838.zip";
"https://releases-cdn.liferay.com/portal/7.0.4-ga5/liferay-ce-portal-tomcat-7.0-ga5-20171018150113838.zip";

wizardAction.importLiferayWorkspace.prepareBundleUrl(bundleUrl);

Expand Down Expand Up @@ -170,7 +170,7 @@ public void importLiferayWorkspaceWithPluginsSdkDownloadBundle() throws IOExcept
wizardAction.importLiferayWorkspace.prepare(project.getPath(), true, project.getName());

String bundleUrl =
"http://ide-resources-site/portal/7.0.4-ga5/liferay-ce-portal-tomcat-7.0-ga5-20171018150113838.zip";
"https://releases-cdn.liferay.com/portal/7.0.4-ga5/liferay-ce-portal-tomcat-7.0-ga5-20171018150113838.zip";

wizardAction.importLiferayWorkspace.prepareBundleUrl(bundleUrl);

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ public void importLiferayWorkspaceWithDownloadBundle() throws IOException {
wizardAction.importLiferayWorkspace.prepare(project.getPath(), true, project.getName());

String bundleUrl =
"http://ide-resources-site/portal/7.0.4-ga5/liferay-ce-portal-tomcat-7.0-ga5-20171018150113838.zip";
"https://releases-cdn.liferay.com/portal/7.0.4-ga5/liferay-ce-portal-tomcat-7.0-ga5-20171018150113838.zip";

wizardAction.importLiferayWorkspace.prepareBundleUrl(bundleUrl);

Expand Down
2 changes: 1 addition & 1 deletion tests-resources/internal/gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@
# "liferay.workspace.bundle.token.download" property to true. The default
# value is the URL for Liferay Portal CE 7.0.3 GA4.
#
liferay.workspace.bundle.url=http://ide-resources-site/portal/7.0.4-ga5/liferay-ce-portal-tomcat-7.0-ga5-20171018150113838.zip
liferay.workspace.bundle.url=https://releases-cdn.liferay.com/portal/7.0.4-ga5/liferay-ce-portal-tomcat-7.0-ga5-20171018150113838.zip

#
# Set this to true to configure Liferay CDN as the default repository in the
Expand Down

0 comments on commit 68abafe

Please sign in to comment.