Add files to rest of projects and add some dependencies

This commit is contained in:
Aly 2020-09-18 12:07:55 -07:00
parent 23ee3d6822
commit 8b8e09e3b6
4 changed files with 26 additions and 1 deletions

View File

@ -10,7 +10,7 @@ object core extends TpolecatModule with PublishModule {
override def artifactName = "fancade-core"
override def publishVersion = "2.0.0"
override def pomSettings = PomSettings(
description = "A library for representing Fancade scripts",
description = "A library for representing and transforming Fancade scripts",
organization = "tf.bug",
url = "https://gitdab.com/s/fancadescala",
licenses = Seq(License.MIT),
@ -24,6 +24,12 @@ object core extends TpolecatModule with PublishModule {
Developer("sorenbug", "Soren", "https://gitdab.com/s"),
),
)
override def ivyDeps = Agg(
ivy"org.typelevel::cats-core:2.2.0",
ivy"io.higherkindness::droste-core:0.8.0",
ivy"org.scala-graph::graph-core:1.13.2",
)
}
object tagless extends TpolecatModule with PublishModule {
@ -47,6 +53,10 @@ object tagless extends TpolecatModule with PublishModule {
),
)
override def ivyDeps = Agg(
ivy"org.typelevel::cats-tagless-macros:0.11",
)
override def moduleDeps = Seq(core)
override def scalacPluginIvyDeps = Agg(ivy"org.typelevel:::kind-projector:0.11.0", ivy"com.olegpy::better-monadic-for:0.3.1")

View File

@ -0,0 +1,5 @@
package tf.bug.fancade.recipe
object Bar {
}

View File

@ -0,0 +1,5 @@
package tf.bug.fancade.scodec
object Baz {
}

View File

@ -0,0 +1,5 @@
package tf.bug.fancade.tagless
object Qux {
}