Skip to content

Commit

Permalink
Fixing
Browse files Browse the repository at this point in the history
  • Loading branch information
armanbilge committed Aug 29, 2024
1 parent 919ebf4 commit 89e8bd3
Showing 1 changed file with 3 additions and 5 deletions.
8 changes: 3 additions & 5 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ ThisBuild / developers := List(

ThisBuild / githubWorkflowJavaVersions := Seq(JavaSpec.temurin("17"))

ThisBuild / startYear := Some(2021)
lazy val commonSettings = Seq(
headerMappings := headerMappings.value + (HeaderFileType.scala -> HeaderCommentStyle.cppStyleLineComment),
headerLicense := Some(HeaderLicense.Custom(
Expand All @@ -28,7 +29,6 @@ lazy val commonSettings = Seq(
|""".stripMargin
)
),
startYear := Some(2021),
libraryDependencies ++= Seq(
"org.typelevel" %%% "munit-cats-effect" % munitCEVersion % Test,
"org.http4s" %%% "http4s-dsl" % http4sVersion % Test,
Expand All @@ -48,7 +48,6 @@ lazy val root = tlCrossRootProject.aggregate(
lazy val http4s = crossProject(JSPlatform, JVMPlatform, NativePlatform)
.crossType(CrossType.Pure)
.in(file("modules/http4s"))
.enablePlugins(AutomateHeaderPlugin)
.settings(commonSettings)
.settings(
name := "natchez-http4s",
Expand All @@ -65,13 +64,12 @@ lazy val http4s = crossProject(JSPlatform, JVMPlatform, NativePlatform)
lazy val examples = project
.in(file("modules/examples"))
.dependsOn(http4s.jvm)
.enablePlugins(AutomateHeaderPlugin, NoPublishPlugin)
.enablePlugins(NoPublishPlugin)
.settings(commonSettings)
.settings(
publish / skip := true,
name := "natchez-http4s-examples",
description := "Example programs for Natchez-Http4s.",
scalacOptions -= "-Xfatal-warnings",
tlFatalWarnings := false,
libraryDependencies ++= Seq(
"org.tpolecat" %% "natchez-jaeger" % natchezVersion,
"org.http4s" %% "http4s-dsl" % http4sVersion,
Expand Down

0 comments on commit 89e8bd3

Please sign in to comment.