Skip to content

Commit

Permalink
Move publish settings upwards
Browse files Browse the repository at this point in the history
  • Loading branch information
natsukagami committed May 14, 2024
1 parent 34668c7 commit 37d17e7
Showing 1 changed file with 10 additions and 6 deletions.
16 changes: 10 additions & 6 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,15 @@ ThisBuild / scalaVersion := "3.3.3"

publish / skip := true

inThisBuild(
Seq(
// publish settings
organization := "ch.epfl.lamp",
homepage := Some(url("https://lampepfl.github.io/gears")),
licenses := List(License.Apache2)
)
)

lazy val root =
crossProject(JVMPlatform, NativePlatform)
.crossType(CrossType.Full)
Expand All @@ -14,12 +23,7 @@ lazy val root =
name := "Gears",
versionScheme := Some("early-semver"),
libraryDependencies += "org.scalameta" %%% "munit" % "1.0.0-RC1" % Test,
testFrameworks += new TestFramework("munit.Framework"),

// publish settings
organization := "ch.epfl.lamp",
homepage := Some(url("https://lampepfl.github.io/gears")),
licenses := List(License.Apache2)
testFrameworks += new TestFramework("munit.Framework")
)
)
.jvmSettings(
Expand Down

0 comments on commit 37d17e7

Please sign in to comment.