Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

HTTP response code 403 for waroverlay.gradle script #16

Open
darkolakovic opened this issue Jun 3, 2021 · 2 comments
Open

HTTP response code 403 for waroverlay.gradle script #16

darkolakovic opened this issue Jun 3, 2021 · 2 comments

Comments

@darkolakovic
Copy link

When using

apply from: "http://dl.bintray.com/scalding/generic/waroverlay.gradle"

in your build.gradle script, HTTP response code 403 is returned:

> Could not read script 'http://dl.bintray.com/scalding/generic/waroverlay.gradle'.
> Server returned HTTP response code: 403 for URL: http://dl.bintray.com/scalding/generic/waroverlay.gradle

@JamesMackerel
Copy link

https://blog.gradle.org/jcenter-shutdown

Bintray has shutdown, same problem occurs when you try to build Apereo CAS from source.

@arinanto
Copy link

You can replace

apply from: "http://dl.bintray.com/scalding/generic/waroverlay.gradle"

with

buildscript {
    repositories {
        jcenter()
    }
    dependencies {
        classpath "org.scaldingspoon.gradle:gradle-waroverlay-plugin:0.9.3"
    }
}
apply plugin: 'waroverlay'

instead.

I have tried it, at least it's able to build cas.war for Apereo CAS.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants