abashev / vfs-s3

Amazon S3 driver for Apache commons-vfs (Virtual File System) project
Apache License 2.0
92 stars 50 forks source link

Assets Missing From BinTray? #44

Closed gmcquillan closed 5 years ago

gmcquillan commented 7 years ago

I'm trying to test this library out, but when I include it as a dependency, grandle isn't able to find it.

I assumed this should be available via jcentral, but I don't see it here: http://jcenter.bintray.com/com/github/ -- It would be under vfs-s3, but that directory doesn't exist.

Is there another repository we need to add to pull this dependency?

gmcquillan commented 7 years ago

Ah, I've found the assets here: https://dl.bintray.com/abashev/vfs-s3/com/github/vfs-s3/2.4.2/

Still working out how to make gradle poll that.

gmcquillan commented 7 years ago

Yep, you have to add this repository to your config:

repositories {
    ...
    maven {
        url "https://dl.bintray.com/abashev/vfs-s3/"
    }
}

Can we get this mentioned in the README perhaps?