Skip to content

Commit

Permalink
Update build.sbt
Browse files Browse the repository at this point in the history
  • Loading branch information
nryanov committed Jul 12, 2021
1 parent 7ddf717 commit 6af59f7
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ lazy val noPublish = Seq(

lazy val buildSettings = Seq(
sonatypeProfileName := "com.nryanov",
organization := "com.nryanov.tarantool",
organization := "com.nryanov.zio-tarantool",
homepage := Some(url("https://github.com/nryanov/zio-tarantool")),
licenses := List("Apache-2.0" -> url("http://www.apache.org/licenses/LICENSE-2.0")),
developers := List(
Expand All @@ -98,7 +98,12 @@ lazy val buildSettings = Seq(
lazy val allSettings = buildSettings

lazy val zioTarantool =
project.in(file(".")).settings(noPublish).aggregate(core, examples)
project
.in(file("."))
.settings(moduleName := "zio-tarantool")
.settings(allSettings)
.settings(noPublish)
.aggregate(core, examples)

lazy val core = project
.in(file("core"))
Expand Down

0 comments on commit 6af59f7

Please sign in to comment.