Skip to content

Commit 67b3f7a

Browse files
authored
Relocate hazelcast-remote-controller [DI-639] (#1556)
In hazelcast/hazelcast-remote-controller#75, `hazelcast-remote-controller` is deployed to a different repository to address build issues. Update the paths to suit. Also: - updated Maven central URL as per hazelcast/hazelcast-mono#4897 - updated Maven central URL to use `HTTPS`, as `HTTP` is [no longer supported](https://maven.apache.org/docs/3.8.1/release-notes.html). Fixes: [DI-639](https://hazelcast.atlassian.net/browse/DI-639) [DI-639]: https://hazelcast.atlassian.net/browse/DI-639?atlOrigin=eyJpIjoiNWRkNTljNzYxNjVmNDY3MDlhMDU5Y2ZhYzA5YTRkZjUiLCJwIjoiZ2l0aHViLWNvbS1KU1cifQ
1 parent 8af4f8c commit 67b3f7a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

scripts/download-rc.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ const HAZELCAST_VERSION = HZ_VERSION;
66
const HAZELCAST_ENTERPRISE_VERSION = HZ_VERSION;
77
const HAZELCAST_RC_VERSION = '0.8-SNAPSHOT';
88
const SNAPSHOT_REPO = 'https://oss.sonatype.org/content/repositories/snapshots';
9-
const RELEASE_REPO = 'http://repo1.maven.apache.org/maven2';
9+
const RELEASE_REPO = 'https://repo.maven.apache.org/maven2';
1010
const ENTERPRISE_RELEASE_REPO = 'https://repository.hazelcast.com/release/';
1111
const ENTERPRISE_SNAPSHOT_REPO = 'https://repository.hazelcast.com/snapshot/';
1212

@@ -46,7 +46,7 @@ const downloadRC = () => {
4646
'-q',
4747
'org.apache.maven.plugins:maven-dependency-plugin:2.10:get',
4848
'-Dtransitive=false',
49-
`-DremoteRepositories=${SNAPSHOT_REPO}`,
49+
`-DremoteRepositories=${ENTERPRISE_SNAPSHOT_REPO}`,
5050
`-Dartifact=com.hazelcast:hazelcast-remote-controller:${HAZELCAST_RC_VERSION}`,
5151
`-Ddest=hazelcast-remote-controller-${HAZELCAST_RC_VERSION}.jar`
5252
], {

0 commit comments

Comments
 (0)