Skip to content
This repository has been archived by the owner on Sep 19, 2021. It is now read-only.

sbt/bintry

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

bintry

your packages, delivered fresh

A scala interface for the bintray api.

install

copy and paste method

add the following to your sbt build definition

libraryDependencies += "org.foundweekends" %% "bintry" % "0.6.0"

usage

Create a new bintry Client with your bintray username and api key ( which can be found here )

import bintry._, dispatch._, dispatch.Defaults._, org.json4s._
val bty = Client(user, apikey)
val repo = bty.repo(user, "generic")

create a package

repo.createPackage("my-awesome-package",
                   "description of my awesome package",
                   Seq("MIT"))(as.json4s.Json)

create a version

repo.get("my-awesome-package").createVersion("0.1.0")(as.json4s.Json)

upload & publish it

repo.get("my-awesome-package").version("0.1.0")
               .upload("/baz", file("foo_2.10"),
                      publish = true)(as.json4s.Json)

metadata

You can assign typed metadata as attributes to packages and versions. Bintray expects these to be of type string, date, number, boolean or version. Bintry exposes these types as Attr.String(stringVal), Attr.Date(java.util.Date), Attr.Number(intVal), Attr.Boolean(boolVal) and Attr(stringVal) respectively.

Doug Tangren (softprops) 2013-2014