@@ -127,17 +127,19 @@ inThisBuild(
127127
128128ThisBuild / githubWorkflowBuildTimeout := Some (60 .minutes)
129129
130- lazy val exampleProjects : Seq [ProjectReference ] = if (" git describe --tags --exact-match" .! == 0 ) Seq .empty[ProjectReference ] else Seq [ProjectReference ](
131- zioHttpExampleBasicAuth,
132- zioHttpExampleCookieAuth,
133- zioHttpExampleDigestAuth,
134- zioHttpExampleOpaqueBearerTokenAuth,
135- zioHttpExampleJwtBearerTokenAuth,
136- zioHttpExampleJwtBearerRefreshTokenAuth,
137- zioHttpExampleOauthBearerTokenAuth,
138- zioHttpExampleWebauthn,
139- )
140-
130+ lazy val exampleProjects : Seq [ProjectReference ] =
131+ if (" git describe --tags --exact-match" .! == 0 ) Seq .empty[ProjectReference ]
132+ else
133+ Seq [ProjectReference ](
134+ zioHttpExampleBasicAuth,
135+ zioHttpExampleCookieAuth,
136+ zioHttpExampleDigestAuth,
137+ zioHttpExampleOpaqueBearerTokenAuth,
138+ zioHttpExampleJwtBearerTokenAuth,
139+ zioHttpExampleJwtBearerRefreshTokenAuth,
140+ zioHttpExampleOauthBearerTokenAuth,
141+ zioHttpExampleWebauthn,
142+ )
141143
142144lazy val aggregatedProjects : Seq [ProjectReference ] =
143145 if (Shading .shadingEnabled) {
@@ -182,8 +184,8 @@ lazy val zioHttp = crossProject(JSPlatform, JVMPlatform)
182184 .settings(
183185 autoCompilerPlugins := true ,
184186 libraryDependencies ++= unroll,
185- addCompilerPlugin(" com.lihaoyi" %% " unroll-plugin" % " 0.1.12 " )
186- )
187+ addCompilerPlugin(" com.lihaoyi" %% " unroll-plugin" % " 0.2.0 " ),
188+ )
187189 .settings(
188190 libraryDependencies ++= {
189191 CrossVersion .partialVersion(scalaVersion.value) match {
0 commit comments