aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorvlad <vlad@drivergrp.com>2016-08-18 16:22:28 -0700
committervlad <vlad@drivergrp.com>2016-08-18 16:22:28 -0700
commita6f21ffbf6a2e1a165a9215a92bc3bb1ebd013f9 (patch)
treeee0c6d40c0e560fa5bf1a0e86ed7c97510c8e6e3 /README.md
parent1128b316f5b9db67014a2a0bada65f45e5d5169e (diff)
downloadsbt-settings-a6f21ffbf6a2e1a165a9215a92bc3bb1ebd013f9.tar.gz
sbt-settings-a6f21ffbf6a2e1a165a9215a92bc3bb1ebd013f9.tar.bz2
sbt-settings-a6f21ffbf6a2e1a165a9215a92bc3bb1ebd013f9.zip
Practical scala style and finalization of the plugin version 0.5.0
Diffstat (limited to 'README.md')
-rw-r--r--README.md5
1 files changed, 4 insertions, 1 deletions
diff --git a/README.md b/README.md
index af74ec5..0468d2a 100644
--- a/README.md
+++ b/README.md
@@ -8,7 +8,7 @@ Provides common sbt configuration for sbt itself, Scala compiler, testing, linti
resolvers += "releases" at "https://drivergrp.jfrog.io/drivergrp/releases"
credentials += Credentials("Artifactory Realm", "drivergrp.jfrog.io", "sbt-publisher", "***REMOVED***")
- addSbtPlugin("com.drivergrp" % "sbt-settings" % "0.3.0")
+ addSbtPlugin("com.drivergrp" % "sbt-settings" % "0.5.0")
### build.sbt
@@ -123,14 +123,17 @@ Scala version — 2.11.8, flags configured:
lazy val usersModule = (project in file("users"))
.settings (lintingSettings ++ formatSettings ++ repositoriesSettings)
.settings (dependenciesSettings ++ testingDependencies)
+ .settings (publishTo := Some(Resolver.defaultLocal))
lazy val assaysModule = (project in file("assays"))
.settings (lintingSettings ++ formatSettings ++ repositoriesSettings)
.settings (dependenciesSettings ++ testingDependencies)
+ .settings (publishTo := Some(Resolver.defaultLocal))
lazy val reportsModule = (project in file("reports"))
.settings (lintingSettings ++ formatSettings ++ repositoriesSettings)
.settings (dependenciesSettings ++ testingDependencies)
+ .settings (publishTo := Some(Resolver.defaultLocal))
lazy val root = (project in file("."))
.settings (name := "direct")