aboutsummaryrefslogtreecommitdiff
path: root/project
diff options
context:
space:
mode:
Diffstat (limited to 'project')
-rw-r--r--project/Build.scala4
-rw-r--r--project/Settings.scala2
2 files changed, 5 insertions, 1 deletions
diff --git a/project/Build.scala b/project/Build.scala
index 7fb935a2..f8f242a4 100644
--- a/project/Build.scala
+++ b/project/Build.scala
@@ -10,6 +10,10 @@ object Build extends Build {
lazy val root = Project("root", file("."))
.aggregate(kamonCore, kamonUow, kamonDashboard)
.settings(basicSettings: _*)
+ .settings(
+ publish := (),
+ publishLocal := ()
+ )
lazy val kamonCore = Project("kamon-core", file("kamon-core"))
.settings(basicSettings: _*)
diff --git a/project/Settings.scala b/project/Settings.scala
index 0089c04d..6389bcf4 100644
--- a/project/Settings.scala
+++ b/project/Settings.scala
@@ -3,7 +3,7 @@ import Keys._
import spray.revolver.RevolverPlugin.Revolver
object Settings {
- val VERSION = "0.2-SNAPSHOT"
+ val VERSION = "0.0.1"
lazy val basicSettings = seq(
version := VERSION,