Skip to content

Commit

Permalink
Fix publish config
Browse files Browse the repository at this point in the history
  • Loading branch information
voidcontext committed Feb 1, 2021
1 parent a512f8a commit 743bd0b
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@ lazy val core = (project in file("modules/core"))
.settings(
defaultSettings,
publishSettings,
name := libraryName,
libraryDependencies ++=
Seq(
"org.typelevel" %% "cats-core" % catsVersion,
Expand All @@ -71,5 +72,11 @@ lazy val benchmark = (project in file("benchmark"))
.dependsOn(core)
.enablePlugins(JavaAppPackaging)

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

addCommandAlias("fmt", ";scalafix ;test:scalafix ;scalafmtAll ;scalafmtSbt")
addCommandAlias("prePush", ";fmt ;clean ;reload ;test")

0 comments on commit 743bd0b

Please sign in to comment.