mirror of
https://github.com/Eyre-S/Coeur-Morny-Cono.git
synced 2024-11-22 03:04:54 +08:00
158 lines
5.4 KiB
Scala
158 lines
5.4 KiB
Scala
aether.AetherKeys.aetherOldVersionMethod := true
|
|
|
|
ThisBuild / organization := MornyProject.group
|
|
ThisBuild / organizationName := MornyProject.group_name
|
|
|
|
ThisBuild / version := MornyProject.version
|
|
|
|
ThisBuild / scalaVersion := "3.4.1"
|
|
|
|
ThisBuild / resolvers ++= Seq(
|
|
"-ws-releases" at "https://mvn.sukazyo.cc/releases"
|
|
)
|
|
|
|
ThisBuild / crossPaths := false
|
|
|
|
if (!MornyProject.publishWithDocJar) {
|
|
(ThisBuild / packageDoc / publishArtifact := false) :: Nil
|
|
} else Nil
|
|
|
|
artifactName := {(sv: ScalaVersion, module: ModuleID, artifact: Artifact) =>
|
|
val classifier = artifact.classifier match {
|
|
case Some(value) => s"-$value"
|
|
case None => ""
|
|
}
|
|
s"${module.name}-${module.revision}$classifier.${artifact.extension}"
|
|
}
|
|
|
|
ThisBuild / scalacOptions ++= Seq(
|
|
"-language:postfixOps",
|
|
"-encoding", MornyProject.source_encoding
|
|
)
|
|
ThisBuild / javacOptions ++= Seq(
|
|
"-encoding", MornyProject.source_encoding,
|
|
"-source", "17",
|
|
"-target", "17"
|
|
)
|
|
ThisBuild / autoAPIMappings := true
|
|
ThisBuild / apiMappings ++= {
|
|
def mappingsFor(organization: String, names: List[String], location: String, revision: String => String = identity): Seq[(File, URL)] =
|
|
for {
|
|
entry: Attributed[File] <- (Compile / fullClasspath).value
|
|
module: ModuleID <- entry.get(moduleID.key)
|
|
if module.organization == organization
|
|
if names.exists(module.name.startsWith)
|
|
} yield entry.data -> url(location.format(revision(module.revision)))
|
|
val mappings: Seq[(File, URL)] = Seq(
|
|
mappingsFor("org.scala-lang", List("scala-library"), "https://scala-lang.org/api/%s/"),
|
|
mappingsFor("com.github.pengrad", "java-telegram-bot-api"::Nil, "https://jitpack.io/com/github/pengrad/java-telegram-bot-api/6.3.0/javadoc/"),
|
|
).flatten
|
|
mappings.toMap
|
|
}
|
|
|
|
ThisBuild / publishTo := MornyProject.publishTo
|
|
ThisBuild / credentials ++= MornyProject.publishCredentials
|
|
|
|
|
|
lazy val morny_system_lib = (project in file (MornyProject.morny_system_lib.id))
|
|
.settings(
|
|
|
|
name := MornyProject.morny_system_lib.name,
|
|
moduleName := MornyProject.morny_system_lib.id,
|
|
|
|
libraryDependencies ++= MornyProject.morny_system_lib.dependencies,
|
|
|
|
)
|
|
|
|
lazy val morny_coeur = (project in file(MornyProject.morny_coeur.id))
|
|
.enablePlugins(BuildInfoPlugin)
|
|
.dependsOn(morny_system_lib)
|
|
.settings(
|
|
|
|
name := MornyProject.morny_coeur.name,
|
|
moduleName := MornyProject.morny_coeur.id,
|
|
|
|
Compile / mainClass := Some(MornyProject.morny_coeur.main_class),
|
|
|
|
libraryDependencies ++= MornyProject.morny_coeur.dependencies,
|
|
|
|
buildInfoPackage := MornyProject.morny_coeur.root_package,
|
|
buildInfoObject := "BuildConfig",
|
|
buildInfoKeys ++= Seq(
|
|
BuildInfoKey[String]("VERSION", MornyProject.version),
|
|
BuildInfoKey[String]("VERSION_FULL", MornyProject.version_full),
|
|
BuildInfoKey[String]("VERSION_BASE", MornyProject.version_base),
|
|
BuildInfoKey[Option[String]]("VERSION_DELTA", MornyProject.version_delta),
|
|
BuildInfoKey[String]("CODENAME", MornyProject.version_codename),
|
|
BuildInfoKey.action[Long]("CODE_TIMESTAMP") { MornyProject.code_time },
|
|
BuildInfoKey.action[String]("COMMIT") { MornyProject.git_commit },
|
|
BuildInfoKey.action[Boolean]("CLEAN_BUILD") { MornyProject.git_is_clean },
|
|
BuildInfoKey[String]("CODE_STORE", MornyProject.git_store),
|
|
BuildInfoKey[String]("COMMIT_PATH", MornyProject.git_store_path),
|
|
),
|
|
|
|
assemblyMergeStrategy := {
|
|
case module if module endsWith "module-info.class" => MergeStrategy.concat
|
|
case module_kt if module_kt endsWith ".kotlin_module" => MergeStrategy.concat
|
|
case version if (version startsWith "META-INF") && (version endsWith ".versions.properties") => MergeStrategy.concat
|
|
case x =>
|
|
val oldStrategy = (ThisBuild / assemblyMergeStrategy).value
|
|
oldStrategy(x)
|
|
},
|
|
assembly / artifact := (assembly / artifact).value
|
|
.withClassifier(Some("fat")),
|
|
if (MornyProject.publishWithFatJar) {
|
|
addArtifact(assembly / artifact, assembly)
|
|
} else Nil,
|
|
if (System.getenv("DOCKER_BUILD") != null) {
|
|
assembly / assemblyJarName := {
|
|
sLog.value info "environment DOCKER_BUILD checked"
|
|
sLog.value info "assembly will output for docker build (morny-coeur-docker-build.jar)"
|
|
s"${MornyProject.morny_coeur.id}-docker-build.jar"
|
|
}
|
|
} else Nil,
|
|
|
|
)
|
|
|
|
lazy val dockerImageName: SettingKey[String] = settingKey[String]("Docker image name that want to built")
|
|
lazy val dockerImageTag: SettingKey[String] = settingKey[String]("Docker image tag or aka image version of the built image")
|
|
lazy val dockerBuild: TaskKey[Unit] = taskKey("Build using system docker with current version as the container tag")
|
|
|
|
lazy val root = (project in file ("."))
|
|
.aggregate(morny_system_lib, morny_coeur)
|
|
.settings(
|
|
|
|
name := "Coeur Morny Cono",
|
|
|
|
skip := true,
|
|
update / skip := false,
|
|
|
|
assembly / aggregate := false,
|
|
assembly := {
|
|
(morny_coeur / assembly).value
|
|
},
|
|
run / aggregate := false,
|
|
run := {
|
|
(morny_coeur / Compile / run).evaluated
|
|
},
|
|
|
|
dockerImageName := MornyProject.docker_image_name,
|
|
dockerImageTag := version.value,
|
|
dockerBuild := {
|
|
|
|
val builtImageName = dockerImageName.value
|
|
val builtImageTag = (ThisProject / dockerImageTag).value
|
|
sLog.value info s"Building docker image with name $builtImageName:$builtImageTag"
|
|
|
|
import scala.language.postfixOps
|
|
import scala.sys.process.*
|
|
s"docker build -t $builtImageName:$builtImageTag ."!
|
|
|
|
sLog.value info s"Built docker image $builtImageName:$builtImageTag"
|
|
|
|
}
|
|
|
|
)
|
|
|
|
|