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

Consider deploying artifacts to bintray #5

Open
aalmiray opened this issue Mar 4, 2014 · 6 comments
Open

Consider deploying artifacts to bintray #5

aalmiray opened this issue Mar 4, 2014 · 6 comments

Comments

@aalmiray
Copy link

aalmiray commented Mar 4, 2014

Bintray is to binaries what Github is to source 😄

@RefuX
Copy link

RefuX commented Mar 14, 2014

+1

@matsandreassen-triona
Copy link

I would like this to happen as well! I'm getting "peer not authenticated" when I try to reference cloud.github.com.

@tddmonkey
Copy link

+1 on this as it would appear right now this is unusable due to the peer not authenticated error.

@dadoonet
Copy link

dadoonet commented Nov 6, 2017

Agreed. Apparently with Gradle 4.3 this is not working anymore:

        add(new org.apache.ivy.plugins.resolver.URLResolver()) {
            name = 'GitHub'
            addArtifactPattern 'http://cloud.github.com/downloads/[organisation]/[module]/[module]-[revision].[ext]'
        }

It fails with:

Could not compile build file '/Users/dpilato/Documents/Elasticsearch/dev/talks/ingest-jdbc/build.gradle'.
> startup failed:
  build file '/Users/dpilato/Documents/Elasticsearch/dev/talks/ingest-jdbc/build.gradle': 8: unable to resolve class org.apache.ivy.plugins.resolver.URLResolver 
   @ line 8, column 13.
             add(new org.apache.ivy.plugins.resolver.URLResolver()) {
                 ^
  
  1 error

@dadoonet
Copy link

dadoonet commented Nov 6, 2017

The "right" syntax should be something like:

        ivy {
            url "http://cloud.github.com/downloads/"
            layout "pattern", {
                artifact "[organisation]/[module]/[module]-[revision].[ext]"
            }
        }

But

             > Could not GET 'http://cloud.github.com/downloads/jamescarr/h2-gradle-plugin/h2-gradle-plugin-0.8.2.xml'. Received status code 403 from server: 

Yeah. Apparently there is no "release" on the GH page: https://github.com/jamescarr/h2-gradle-plugin/releases

Is it something you are planning to fix? Or any workaround?

@aalmiray
Copy link
Author

aalmiray commented Nov 7, 2017

@dadoonet you can also try http://jitpack.io/

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

5 participants