Skip to content

Commit

Permalink
Fix an issue with header plugin
Browse files Browse the repository at this point in the history
  • Loading branch information
danicheg committed Apr 22, 2024
1 parent 83e62f8 commit 276fa8e
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,8 @@ ThisBuild / githubWorkflowOSes := Seq("ubuntu-22.04")
lazy val root = tlCrossRootProject
.settings(
name := "mouse",
licenses := List(License.MIT)
licenses := List(License.MIT),
startYear := Some(2016)
)
.aggregate(cross)

Expand All @@ -28,7 +29,7 @@ lazy val cross = crossProject(JSPlatform, JVMPlatform, NativePlatform)
"org.scalameta" %%% "munit" % "1.0.0-M11" % Test,
"org.scalameta" %%% "munit-scalacheck" % "1.0.0-M11" % Test
),
ThisBuild / licenses := List("MIT license" -> url("http://opensource.org/licenses/MIT")),
licenses := List(License.MIT),
developers := List(
Developer("benhutchison", "Ben Hutchison", "brhutchison@gmail.com", url = url("https://github.com/benhutchison"))
),
Expand Down

0 comments on commit 276fa8e

Please sign in to comment.