Coeur-Morny-Cono/project/MornyConfiguration.scala

130 lines
3.7 KiB
Scala
Raw Normal View History

2024-04-19 15:35:53 +08:00
import sbt.*
2023-12-11 20:35:39 +08:00
//noinspection TypeAnnotation
object MornyConfiguration {
val MORNY_CODE_STORE = "https://github.com/Eyre-S/Coeur-Morny-Cono"
val MORNY_COMMIT_PATH = "https://github.com/Eyre-S/Coeur-Morny-Cono/commit/%s"
val VERSION = "2.0.0-alpha20"
2023-12-11 20:35:39 +08:00
val VERSION_DELTA: Option[String] = None
2024-03-07 18:27:35 +08:00
val CODENAME = "xinzheng"
2023-12-11 20:35:39 +08:00
val SNAPSHOT = false
2023-12-11 20:35:39 +08:00
val GROUP = "cc.sukazyo"
val GROUP_NAME = "A.C. Sukazyo Eyre"
trait ProjectMetadata {
2023-12-11 20:35:39 +08:00
val name: String
val id: String
2023-12-11 20:35:39 +08:00
val group: String
val root_package: String
2023-12-11 20:35:39 +08:00
val dependencies: Seq[ModuleID]
2023-12-11 20:35:39 +08:00
}
trait Runnable {
val main_class: String
}
object Morny_System_Library extends ProjectMetadata {
2023-12-11 20:35:39 +08:00
override val name = "Morny System Library"
override val id = "morny-system-lib"
2023-12-11 20:35:39 +08:00
override val group = GROUP
override val root_package = s"${this.group}.cono.morny.system"
2023-12-11 20:35:39 +08:00
override val dependencies = Seq(
"com.github.spotbugs" % "spotbugs-annotations" % "4.8.4" % Compile,
"cc.sukazyo" % "messiva" % "0.2.0",
"cc.sukazyo" % "resource-tools" % "0.3.1",
"com.github.pengrad" % "java-telegram-bot-api" % "6.2.0",
"com.softwaremill.sttp.client3" %% "core" % "3.9.5",
"com.softwaremill.sttp.client3" %% "okhttp-backend" % "3.9.5",
"com.squareup.okhttp3" % "okhttp" % "4.12.0" % Runtime,
"org.jsoup" % "jsoup" % "1.17.2",
"org.scalatest" %% "scalatest" % "3.2.18" % Test,
"org.scalatest" %% "scalatest-freespec" % "3.2.18" % Test,
// for test report
"com.vladsch.flexmark" % "flexmark" % "0.64.8" % Test,
"com.vladsch.flexmark" % "flexmark-profile-pegdown" % "0.64.8" % Test
2023-12-11 20:35:39 +08:00
)
2023-12-11 20:35:39 +08:00
}
object Morny_Coeur extends ProjectMetadata with Runnable {
override val name = "Morny Coeur"
override val id = "morny-coeur"
override val group = GROUP
override val root_package = s"$GROUP.cono.morny"
override val main_class = s"${this.root_package}.core.ServerMain"
override val dependencies = Seq(
"com.github.spotbugs" % "spotbugs-annotations" % "4.8.4" % Compile,
"cc.sukazyo" % "messiva" % "0.2.0",
"cc.sukazyo" % "resource-tools" % "0.3.1",
"com.github.pengrad" % "java-telegram-bot-api" % "6.2.0",
"org.http4s" %% "http4s-dsl" % "0.23.27",
"org.http4s" %% "http4s-circe" % "0.23.27",
"org.http4s" %% "http4s-netty-server" % "0.5.16",
"com.softwaremill.sttp.client3" %% "core" % "3.9.5",
"com.softwaremill.sttp.client3" %% "okhttp-backend" % "3.9.5",
"com.squareup.okhttp3" % "okhttp" % "4.12.0" % Runtime,
"org.typelevel" %% "case-insensitive" % "1.4.0",
"com.google.code.gson" % "gson" % "2.10.1",
"io.circe" %% "circe-core" % "0.14.7",
"io.circe" %% "circe-generic" % "0.14.7",
"io.circe" %% "circe-parser" % "0.14.7",
"org.jsoup" % "jsoup" % "1.17.2",
"com.cronutils" % "cron-utils" % "9.2.1",
// used for disable slf4j
// due to the slf4j api have been used in the following libraries:
// - cron-utils
"org.slf4j" % "slf4j-nop" % "2.0.13" % Runtime,
"org.scalatest" %% "scalatest" % "3.2.18" % Test,
"org.scalatest" %% "scalatest-freespec" % "3.2.18" % Test,
// for test report
"com.vladsch.flexmark" % "flexmark" % "0.64.8" % Test,
"com.vladsch.flexmark" % "flexmark-profile-pegdown" % "0.64.8" % Test
)
}
2023-12-11 20:35:39 +08:00
val publishTo: Some[Resolver] = {
//noinspection SimplifyBooleanMatch
SNAPSHOT match {
case true => Some("-ws-snapshots" at "https://mvn.sukazyo.cc/snapshots")
case false => Some("-ws-releases" at "https://mvn.sukazyo.cc/releases")
}
2023-12-12 17:12:02 +08:00
// Some(Resolver.file("build", file("S:/__tests/artifacts")))
2023-12-11 20:35:39 +08:00
// None
}
val publishCredentials: Seq[Credentials] = {
Seq(Credentials(Path.userHome / ".sbt" / ("workshop-mvn"+".credentials")))
// Nil
}
}