Skip to content

Instantly share code, notes, and snippets.

@mefellows
Created August 6, 2014 13:32
Show Gist options
  • Save mefellows/4c6fb0ef0eec34482587 to your computer and use it in GitHub Desktop.
Save mefellows/4c6fb0ef0eec34482587 to your computer and use it in GitHub Desktop.
Scala - Travis CI Bintray Sample build.sbt
import bintray.AttrMap
import bintray._
name := "sbt-dotenv"
description := "An SBT Plugin to load environment variables from .env into the JVM System Environment for local development. Assists with 'Twelve Factor App' development principle 3 'Store config in the environment'."
organization := "au.com.onegeek"
scalaVersion := "2.10.4"
version := "1.0"
publishMavenStyle := false
bintrayPublishSettings
bintray.Keys.repository in bintray.Keys.bintray := "sbt-plugins"
licenses += ("MIT", url("http://opensource.org/licenses/MIT"))
bintray.Keys.bintrayOrganization in bintray.Keys.bintray := None
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment