vladimir-lu / sbt-google-cloud-storage

A SBT resolver and publisher for Google Cloud Storage

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Google Cloud Storage SBT plugin

A SBT resolver and publisher for Google Cloud Storage. The plugin works out of one bucket at the time, this bucket have to be created and configured before using this plugin.

Authentication with Google Cloud

Provide download only dependencies

If you want to provide dependencies for the public the only thing you have to do is to make sure your bucket have public read access rights set. This is done automatically for you if you publish your project using this plugin with the AccessRights.PublicRead flag set.

Publishing and resolving from private buckets

If you want to publish you need to create a service token in the Google Cloud console.

  • Create a json token file.
  • The service token should be set to "Owner".
  • Configure the following environment variable to point at the token json file
    export GOOGLE_APPLICATION_CREDENTIALS=<your-file-here>
  • You may have to logout and then login for the environment variable to be read again.

Usage

Add the following to plugins.sbt in your project:

addSbtPlugin("com.lightbend" % "sbt-google-cloud-storage" % "0.0.10")

Using the plugin in your project

To use this plugin as a resolver, add the following to build.sbt.

resolvers += GCSResolver.forBucket("bucket-name")

To (optionally) use the plugin to publish artifacts.

publishTo := Some(GCSPublisher.forBucket("bucket-name",AccessRights.InheritBucket))

The publisher takes a second parameter that can be either of these values.

  • AccessRights.InheritBucket - if you want the content to inherit the bucket access rights.
  • AccessRights.PublicRead - if you want the content to be publicly available for download.

Maintenance notes

This plugin is NOT supported under the Lightbend subscription.

The project is maintained by the contributors. Pull requests are very welcome–thanks in advance!

Limitations

  • This project is currently only usable using Scala 2.12.x and SBT 1.0.x.
  • This plugin alway use Ivy style publishing.

About

A SBT resolver and publisher for Google Cloud Storage

License:Apache License 2.0


Languages

Language:Scala 100.0%