Skip to content

Commit

Permalink
Added corrected headers
Browse files Browse the repository at this point in the history
  • Loading branch information
j-mie6 committed Feb 8, 2024
1 parent 76b0be3 commit 812bad2
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@ val Scala3 = "3.3.1"

val mainBranch = "main"

Global / onChangedBuildSource := ReloadOnSourceChanges

inThisBuild(List(
tlBaseVersion := "0.0",

Expand All @@ -26,14 +28,22 @@ inThisBuild(List(

lazy val root = tlCrossRootProject.aggregate(core)

lazy val commonSettings = Seq(
headerLicenseStyle := HeaderLicenseStyle.SpdxSyntax,
headerEmptyLine := false,

resolvers ++= Opts.resolver.sonatypeOssReleases,
)

lazy val core = crossProject(JVMPlatform, JSPlatform, NativePlatform)
.withoutSuffixFor(JVMPlatform)
.crossType(CrossType.Full)
.in(file("core"))
.settings(
name := "golden-scala",
commonSettings,
libraryDependencies ++= Seq(

)
)

Expand Down

0 comments on commit 812bad2

Please sign in to comment.