This is an automated email from the ASF dual-hosted git repository. astefanutti pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/camel-k.git
commit bc16ba0deae1027054a5fd98984af025b7006c65 Author: Antonin Stefanutti <anto...@stefanutti.fr> AuthorDate: Mon Mar 29 17:14:00 2021 +0200 test: Correct Maven central proxy Nexus URL --- e2e/common/build/maven_ca_secret_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/e2e/common/build/maven_ca_secret_test.go b/e2e/common/build/maven_ca_secret_test.go index 85d0a24..8466a38 100644 --- a/e2e/common/build/maven_ca_secret_test.go +++ b/e2e/common/build/maven_ca_secret_test.go @@ -309,7 +309,7 @@ ProxyPreserveHost On // Install Camel K with the Maven CA secret Expect(Kamel("install", "-n", ns, - "--maven-repository", fmt.Sprintf(`https://%s/nexus/content/groups/public@id\=nexus@snapshots`, hostname), + "--maven-repository", fmt.Sprintf(`https://%s/repository/maven-public/@id=central@snapshots`, hostname), "--maven-ca-secret", secret.Name+"/"+corev1.TLSCertKey, ).Execute()).To(Succeed())