elukey commented on pull request #832: URL: https://github.com/apache/bigtop/pull/832#issuecomment-1001138982
@iwasakims I found [this](https://github.com/apache/kafka/pull/10056) kafka issue that seem to remove the dl.bintray.com problem. I adapted the patch for the 2.8 branch: ``` diff --git a/build.gradle b/build.gradle index e21609fd49..a187004b69 100644 --- a/build.gradle +++ b/build.gradle @@ -20,12 +20,10 @@ import java.nio.charset.StandardCharsets buildscript { repositories { mavenCentral() - jcenter() maven { url "https://plugins.gradle.org/m2/" } } - apply from: file('gradle/buildscript.gradle'), to: buildscript apply from: "$rootDir/gradle/dependencies.gradle" dependencies { diff --git a/gradle/buildscript.gradle b/gradle/buildscript.gradle deleted file mode 100644 index 83967bb47d..0000000000 --- a/gradle/buildscript.gradle +++ /dev/null @@ -1,23 +0,0 @@ -// Licensed to the Apache Software Foundation (ASF) under one or more -// contributor license agreements. See the NOTICE file distributed with -// this work for additional information regarding copyright ownership. -// The ASF licenses this file to You under the Apache License, Version 2.0 -// (the "License"); you may not use this file except in compliance with -// the License. You may obtain a copy of the License at -// -// http://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. - -repositories { - repositories { - // For license plugin. - maven { - url 'https://dl.bintray.com/content/netflixoss/external-gradle-plugins/' - } - } -} ``` -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
