Skip to content

Commit

Permalink
Refactored build.sbt
Browse files Browse the repository at this point in the history
  • Loading branch information
Valentinov Aleksandr Aleksandrovich committed Apr 15, 2020
1 parent 927e1cb commit 7606137
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ Where `<module>` is module name.
| Module name | Functionality |
|--------------|----------------|
| akka-http | Marshallers and unmarshallers for [akka-http](https://doc.akka.io/docs/akka-http/current/) |
| akka-streams | Streaming decoding support for [akka-streams](https://doc.akka.io/docs/akka/current/stream/index.html)|
| akka-stream | Streaming decoding support for [akka-stream](https://doc.akka.io/docs/akka/current/stream/index.html)|
| derevo | Separate derivation of encoders and decoders separately using [derevo](https://github.com/manatki/derevo) annotations (e.g. `@derive(xmlEncoder("foo"))`)
| enumeratum | Support for [enumeratum](https://github.com/lloydmeta/enumeratum#manual-override-of-name) enums |
| fs2 | Streaming decoding support (`Stream[F, Array[Byte]] => G[A]`) |
Expand Down
4 changes: 2 additions & 2 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -43,12 +43,12 @@ def phobosModule(id: String) =
lazy val core = phobosModule("core")
lazy val derevo = phobosModule("derevo") dependsOn (core % "compile->compile;test->test")
lazy val enumeratum = phobosModule("enumeratum") dependsOn (core % "compile->compile;test->test")
lazy val akka = phobosModule("akka-http") dependsOn (core % "compile->compile;test->test")
lazy val `akka-http` = phobosModule("akka-http") dependsOn (core % "compile->compile;test->test")
lazy val `akka-stream` = phobosModule("akka-stream") dependsOn (core % "compile->compile;test->test")
lazy val monix = phobosModule("monix") dependsOn (core % "compile->compile;test->test")
lazy val fs2 = phobosModule("fs2") dependsOn (core % "compile->compile;test->test")

lazy val modules: List[ProjectReference] = List(core, akka, derevo, enumeratum, monix, fs2, `akka-stream`)
lazy val modules: List[ProjectReference] = List(core, `akka-http`, derevo, enumeratum, monix, fs2, `akka-stream`)


lazy val phobos = project
Expand Down

0 comments on commit 7606137

Please sign in to comment.