Created
August 6, 2014 13:32
-
-
Save mefellows/4c6fb0ef0eec34482587 to your computer and use it in GitHub Desktop.
Scala - Travis CI Bintray Sample build.sbt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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