Skip to content

Commit

Permalink
Merge pull request #31 from okumin/upgrade-sbt
Browse files Browse the repository at this point in the history
Upgrade sbt to 1.0.3
  • Loading branch information
okumin authored Nov 7, 2017
2 parents 1b44a5d + 8f4e70d commit 61253a9
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
7 changes: 6 additions & 1 deletion build.sbt
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@

lazy val root = (project in file(".")).aggregate(core)
lazy val root = (project in file("."))
.aggregate(core)
.settings(skip in publish := true)

lazy val core = (project in file("core"))
.settings(commonSettings: _*)
Expand All @@ -10,6 +12,7 @@ lazy val core = (project in file("core"))

lazy val persistenceQuery = (project in file("persistence-query"))
.settings(commonSettings: _*)
.settings(skip in publish := true)
.settings(
name := "akka-persistence-query-sql-async",
libraryDependencies ++= persistenceQueryDependencies
Expand All @@ -18,6 +21,7 @@ lazy val persistenceQuery = (project in file("persistence-query"))

lazy val performanceTest = (project in file("performance-test"))
.settings(commonSettings: _*)
.settings(skip in publish := true)
.settings(
name := "akka-persistence-sql-async-performance-test"
)
Expand All @@ -28,6 +32,7 @@ lazy val performanceTest = (project in file("performance-test"))

lazy val sample = (project in file("sample"))
.settings(commonSettings: _*)
.settings(skip in publish := true)
.settings(
name := "akka-persistence-sql-async-sample",
libraryDependencies ++= Seq(
Expand Down
2 changes: 1 addition & 1 deletion project/build.properties
Original file line number Diff line number Diff line change
@@ -1 +1 @@
sbt.version=0.13.16
sbt.version=1.0.3

0 comments on commit 61253a9

Please sign in to comment.