Skip to content

Commit aae561c

Browse files
authored
Relocate hazelcast-remote-controller [DI-639] (#740)
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 Fixes: [DI-639](https://hazelcast.atlassian.net/browse/DI-639) [DI-639]: https://hazelcast.atlassian.net/browse/DI-639?atlOrigin=eyJpIjoiNWRkNTljNzYxNjVmNDY3MDlhMDU5Y2ZhYzA5YTRkZjUiLCJwIjoiZ2l0aHViLWNvbS1KU1cifQ
1 parent 378546b commit aae561c

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

start_rc.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,10 @@
66
SERVER_VERSION = "5.6.0-SNAPSHOT"
77
RC_VERSION = "0.8-SNAPSHOT"
88

9-
RELEASE_REPO = "https://repo1.maven.apache.org/maven2"
9+
RELEASE_REPO = "https://repo.maven.apache.org/maven2"
1010
ENTERPRISE_RELEASE_REPO = "https://repository.hazelcast.com/release/"
1111
SNAPSHOT_REPO = "https://repository.hazelcast.com/snapshot-internal/"
1212
ENTERPRISE_SNAPSHOT_REPO = "https://repository.hazelcast.com/snapshot/"
13-
RC_REPO = "https://oss.sonatype.org/content/repositories/snapshots"
1413
HAZELCAST_GROUP = "com.hazelcast"
1514

1615
if SERVER_VERSION.endswith("-SNAPSHOT"):
@@ -64,7 +63,7 @@ def download_if_necessary(repo, group, artifact_id, version, is_test_artifact=Fa
6463
def start_rc(stdout=None, stderr=None):
6564
artifacts = []
6665

67-
rc = download_if_necessary(RC_REPO, HAZELCAST_GROUP, "hazelcast-remote-controller", RC_VERSION)
66+
rc = download_if_necessary(ENTERPRISE_SNAPSHOT_REPO, HAZELCAST_GROUP, "hazelcast-remote-controller", RC_VERSION)
6867
tests = download_if_necessary(REPO, HAZELCAST_GROUP, "hazelcast", SERVER_VERSION, True)
6968
sql = download_if_necessary(REPO, HAZELCAST_GROUP, "hazelcast-sql", SERVER_VERSION)
7069

0 commit comments

Comments
 (0)