Skip to content

Commit 04bc243

Browse files
committed
refactor: Add pureConfig subproject as dependency of bundles
1 parent 45486e7 commit 04bc243

File tree

1 file changed

+20
-15
lines changed

1 file changed

+20
-15
lines changed

build.sbt

Lines changed: 20 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -55,13 +55,16 @@ lazy val root = project
5555

5656
lazy val bundleMonixHttp4sBlaze = project
5757
.in(file("bundle-monix-http4s-blaze"))
58-
.dependsOn(http4sClientBlaze,
59-
http4sClientBlazePureConfig,
60-
http4sServerBlaze,
61-
http4sServerBlazePureConfig,
62-
http4sServerMicrometer,
63-
jvmMicrometer,
64-
jvmPureConfig)
58+
.dependsOn(
59+
http4sClientBlaze,
60+
http4sClientBlazePureConfig,
61+
http4sServerBlaze,
62+
http4sServerBlazePureConfig,
63+
http4sServerMicrometer,
64+
jvmMicrometer,
65+
jvmPureConfig,
66+
pureConfig
67+
)
6568
.settings(commonSettings)
6669
.settings(
6770
name := "sst-bundle-monix-http4s-blaze",
@@ -70,13 +73,16 @@ lazy val bundleMonixHttp4sBlaze = project
7073

7174
lazy val bundleZioHttp4sBlaze = project
7275
.in(file("bundle-zio-http4s-blaze"))
73-
.dependsOn(http4sClientBlaze,
74-
http4sClientBlazePureConfig,
75-
http4sServerBlaze,
76-
http4sServerBlazePureConfig,
77-
http4sServerMicrometer,
78-
jvmMicrometer,
79-
jvmPureConfig)
76+
.dependsOn(
77+
http4sClientBlaze,
78+
http4sClientBlazePureConfig,
79+
http4sServerBlaze,
80+
http4sServerBlazePureConfig,
81+
http4sServerMicrometer,
82+
jvmMicrometer,
83+
jvmPureConfig,
84+
pureConfig
85+
)
8086
.settings(commonSettings)
8187
.settings(
8288
name := "sst-bundle-zio-http4s-blaze",
@@ -137,7 +143,6 @@ lazy val example = project
137143
http4sClientMonixCatnap,
138144
monixCatnapPureConfig,
139145
micrometerJmxPureConfig,
140-
pureConfig,
141146
sslConfig
142147
)
143148
.enablePlugins(MdocPlugin)

0 commit comments

Comments
 (0)