Skip to content

Commit db1c2d1

Browse files
committed
Set org name to preserve copyright notice
1 parent 8ae65d4 commit db1c2d1

File tree

2 files changed

+9
-5
lines changed

2 files changed

+9
-5
lines changed

build.sbt

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ Global / onChangedBuildSource := ReloadOnSourceChanges
22

33
ThisBuild / tlBaseVersion := "0.5"
44
ThisBuild / organization := "org.systemfw"
5+
ThisBuild / organizationName := "Fabio Labella"
56
ThisBuild / developers ++= List(
67
tlGitHubDev("SystemFw", "Fabio Labella")
78
)
@@ -10,7 +11,6 @@ ThisBuild / startYear := Some(2017)
1011

1112
val Scala213 = "2.13.8"
1213

13-
1414
ThisBuild / crossScalaVersions := Seq(Scala213, "3.2.2", "2.12.14")
1515
ThisBuild / scalaVersion := (ThisBuild / crossScalaVersions).value.head
1616
ThisBuild / initialCommands := """
@@ -48,11 +48,17 @@ lazy val core = crossProject(JVMPlatform, JSPlatform, NativePlatform)
4848
scalafmtOnCompile := true,
4949
libraryDependencies ++=
5050
dep("org.typelevel", "cats-", "2.9.0")("core")().value ++
51-
dep("org.typelevel", "cats-effect", "3.5.0")("")("-laws", "-testkit").value ++
51+
dep("org.typelevel", "cats-effect", "3.5.0")("")(
52+
"-laws",
53+
"-testkit"
54+
).value ++
5255
dep("co.fs2", "fs2-", "3.7.0")("core")().value ++
5356
dep("org.scalameta", "munit", "1.0.0-M7")()("", "-scalacheck").value ++
5457
dep("org.typelevel", "", "2.0.0-M3")()("munit-cats-effect").value ++
55-
dep("org.typelevel", "scalacheck-effect", "2.0.0-M2")()("", "-munit").value
58+
dep("org.typelevel", "scalacheck-effect", "2.0.0-M2")()(
59+
"",
60+
"-munit"
61+
).value
5662
)
5763

5864
lazy val docs = project

project/plugins.sbt

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,5 @@ addSbtPlugin("org.scala-native" % "sbt-scala-native" % "0.4.12")
66
// addSbtPlugin("com.codecommit" % "sbt-spiewak-sonatype" % "0.23.0")
77
// addSbtPlugin("org.scalameta" % "sbt-scalafmt" % "2.4.6")
88

9-
10-
119
// addSbtPlugin("org.portable-scala" % "sbt-scalajs-crossproject" % "1.3.1")
1210
// addSbtPlugin("org.portable-scala" % "sbt-scala-native-crossproject" % "1.3.1")

0 commit comments

Comments
 (0)