diff --git a/build.sbt b/build.sbt index f8ba42f6..774fa072 100644 --- a/build.sbt +++ b/build.sbt @@ -1,6 +1,11 @@ import Build.* -import scala.collection.Seq +inThisBuild( + List( + organization := "com.lunatech", + homepage := Some(url("https://cmt.lunatech.com/")), + developers := List(Developer("eloots", "Eric Loots", "eric.loots@lunatech.com", url("https://github.com/eloots"))), + licenses := Seq("Apache-2.0" -> url("http://www.apache.org/license/LICENSE-2.0")))) ThisBuild / dynverVTagPrefix := false ThisBuild / sonatypeCredentialHost := "s01.oss.sonatype.org" @@ -11,12 +16,6 @@ lazy val `course-management-tools` = .aggregate(cmta, cmtc, core, `functional-tests`, docs) .settings(commonSettings: _*) .settings(publish / skip := true) - .settings(List( - organization := "com.lunatech", - homepage := Some(url("https://cmt.lunatech.com/")), - developers := List( - Developer("eloots", "Eric Loots", "eric.loots@lunatech.com", url("https://github.com/eloots"))), - licenses := Seq("Apache-2.0" -> url("http://www.apache.org/license/LICENSE-2.0")))) lazy val core = project.in(file("core")).settings(commonSettings: _*).settings(libraryDependencies ++= Dependencies.coreDependencies) diff --git a/project/Build.scala b/project/Build.scala index b2dc2759..43fdb308 100644 --- a/project/Build.scala +++ b/project/Build.scala @@ -20,7 +20,6 @@ object Build { } lazy val commonSettings = Seq( - organization := "com.github.lunatech-labs", scalaVersion := Version.scalaVersion, scalacOptions ++= CompileOptions.compileOptions, buildInfoPackage := "com.lunatech.cmt.version",