Skip to content

Commit

Permalink
Old man yells at SBT
Browse files Browse the repository at this point in the history
  • Loading branch information
s5bug committed Mar 21, 2024
1 parent 17fe94f commit b43ff0a
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 8 deletions.
8 changes: 5 additions & 3 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ ThisBuild / tlBaseVersion := "0.0" // your current series x.y
ThisBuild / organization := "tf.bug"
ThisBuild / organizationName := "Aly Cerruti"
ThisBuild / startYear := Some(2023)
ThisBuild / headerEndYear := Some(2024)
ThisBuild / licenses := Seq(License.Apache2)
ThisBuild / developers := List(
// your GitHub handle and name
Expand Down Expand Up @@ -36,7 +35,10 @@ lazy val core = crossProject(JVMPlatform, JSPlatform, NativePlatform)
name := "dirs",
libraryDependencies ++= Seq(
"org.scalameta" %%% "munit" % "1.0.0-M11" % Test,
)
),
headerEndYear := Some(2024)
)

lazy val docs = project.in(file("site")).enablePlugins(TypelevelSitePlugin)
lazy val docs = project.in(file("site"))
.settings(headerEndYear := Some(2024))
.enablePlugins(TypelevelSitePlugin)
2 changes: 1 addition & 1 deletion core/jvm/src/main/scala/tf/bug/dirs/WindowsPlatform.scala
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright 2024 Aly Cerruti
* Copyright 2023-2024 Aly Cerruti
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright 2024 Aly Cerruti
* Copyright 2023-2024 Aly Cerruti
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand Down
2 changes: 1 addition & 1 deletion core/shared/src/main/scala/tf/bug/dirs/Dirs.scala
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright 2024 Aly Cerruti
* Copyright 2023-2024 Aly Cerruti
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand Down
2 changes: 1 addition & 1 deletion core/shared/src/main/scala/tf/bug/dirs/Windows.scala
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright 2024 Aly Cerruti
* Copyright 2023-2024 Aly Cerruti
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand Down
2 changes: 1 addition & 1 deletion core/shared/src/test/scala/tf/bug/dirs/DirsSuite.scala
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright 2024 Aly Cerruti
* Copyright 2023-2024 Aly Cerruti
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand Down

0 comments on commit b43ff0a

Please sign in to comment.