Skip to content

Commit

Permalink
Enable generic module
Browse files Browse the repository at this point in the history
  • Loading branch information
geirolz committed Aug 10, 2022
1 parent a1315d6 commit d7d6c2c
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ lazy val `cats-xml`: Project = project
.settings(
copyReadMe := IO.copyFile(file("docs/compiled/README.md"), file("README.md"))
)
.aggregate(docs, core, metrics, utils, effect, scalaxml)
.aggregate(core, docs, metrics, utils, effect, generic, scalaxml)

lazy val docs: Project =
project
Expand Down Expand Up @@ -111,11 +111,10 @@ lazy val scalaxml: Project =
lazy val generic: Project =
buildModule(
prjModuleName = "generic",
toPublish = false, // TODO ENABLE ONCE READY
toPublish = true,
folder = "modules"
).dependsOn(core, utils)
.settings(
noPublishSettings, // TODO ENABLE ONCE READY
libraryDependencies ++= {
CrossVersion.partialVersion(scalaVersion.value) match {
case Some((2, _)) => ProjectDependencies.Generic.scala2
Expand Down

0 comments on commit d7d6c2c

Please sign in to comment.