-
Notifications
You must be signed in to change notification settings - Fork 2
/
build.sbt
215 lines (178 loc) · 7.32 KB
/
build.sbt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
ThisBuild / scalaVersion := props.ScalaVersion
ThisBuild / organization := props.Org
ThisBuild / developers := List(
Developer(
props.GitHubUsername,
"Kevin Lee",
url(s"https://github.com/${props.GitHubUsername}"),
),
)
ThisBuild / homepage := url(s"https://github.com/${props.GitHubUsername}/${props.RepoName}").some
ThisBuild / scmInfo :=
ScmInfo(
url(s"https://github.com/${props.GitHubUsername}/${props.RepoName}"),
s"https://github.com/${props.GitHubUsername}/${props.RepoName}.git",
).some
ThisBuild / licenses := List("MIT" -> url("http://opensource.org/licenses/MIT"))
ThisBuild / resolvers += "sonatype-snapshots" at s"https://${props.SonatypeCredentialHost}/content/repositories/snapshots"
lazy val whatsub = (project in file("."))
.enablePlugins(DevOopsGitHubReleasePlugin, DocusaurPlugin)
.settings(
name := props.ProjectName,
/* GitHub Release { */
devOopsPackagedArtifacts := List(
s"modules/${props.ProjectName}-cli/target/universal/${name.value}*.zip",
s"modules/${props.ProjectName}-cli/target/native-image/${props.RepoName}-cli-*",
),
/* } GitHub Release */
docusaurDir := (ThisBuild / baseDirectory).value / "website",
docusaurBuildDir := docusaurDir.value / "build",
)
.settings(noPublish)
.aggregate(core, ai, cli)
lazy val core = module("core")
.enablePlugins(BuildInfoPlugin)
.settings(
// resolvers += Resolver.sonatypeRepo("snapshots"),
libraryDependencies ++=
libs.catsAndCatsEffect3 ++ List(libs.catsParse) ++ libs.effectie ++ libs.extras ++
List(
libs.tests.extrasHedgehogCe3,
),
/* Build Info { */
buildInfoKeys := List[BuildInfoKey](name, version, scalaVersion, sbtVersion),
buildInfoObject := "WhatsubBuildInfo",
buildInfoPackage := "whatsub.info",
buildInfoOptions += BuildInfoOption.ToJson,
/* } Build Info */
)
lazy val ai = module("ai")
.settings(
libraryDependencies ++= libs.openAi4s ++
List(
"com.github.pureconfig" %% "pureconfig-cats-effect" % "0.17.4" % Test,
"org.http4s" %% "http4s-blaze-client" % "0.23.15" % Test,
) ++
libs.loggerF ++
List(
libs.tests.extrasHedgehogCe3,
libs.tests.extrasTestingToolsEffectie,
libs.tests.extrasHedgehogCe3,
libs.logback
),
)
.dependsOn(core)
lazy val pirateScalaz = ProjectRef(props.pirateUri, "pirate-scalaz")
lazy val cli = module("cli")
.enablePlugins(JavaAppPackaging, NativeImagePlugin)
.settings(
maintainer := "Kevin Lee <[email protected]>",
packageSummary := "Whatsub - subtitle converter and syncer",
packageDescription := "A tool to convert and sync subtitles",
executableScriptName := props.ExecutableScriptName,
nativeImageVersion := "22.3.0",
nativeImageJvm := "graalvm-java17",
nativeImageOptions ++= List(
"--verbose",
"--no-fallback",
"-H:+ReportExceptionStackTraces",
"--initialize-at-build-time",
"-H:+AddAllCharsets",
// s"-H:ReflectionConfigurationFiles=${ (baseDirectory.value / "graal" / "reflect-config.json").getCanonicalPath }",
// "--allow-incomplete-classpath",
"--report-unsupported-elements-at-runtime",
),
)
.settings(noPublish)
.dependsOn(
core % props.IncludeTest,
pirateScalaz
)
lazy val props =
new {
final val ScalaVersion = "3.3.0"
final val Org = "io.kevinlee"
private val gitHubRepo = findRepoOrgAndName
val GitHubUsername = gitHubRepo.fold("kevin-lee")(_.orgToString)
val RepoName = gitHubRepo.fold("whatsub")(_.nameToString)
final val ProjectName = RepoName
final val ExecutableScriptName = RepoName
final val SonatypeCredentialHost = "s01.oss.sonatype.org"
final val HedgehogVersion = "0.10.1"
final val CatsVersion = "2.10.0"
final val CatsEffect3Version = "3.5.1"
final val CatsParseVersion = "0.3.9"
final val EffectieVersion = "2.0.0-beta12"
val LoggerFVersion = "2.0.0-beta20"
final val pirateVersion = "a3415ad22371820a8c03b62ce9d3e4f467575681"
final val pirateUri = uri(s"https://github.com/$GitHubUsername/pirate.git#$pirateVersion")
final val IncludeTest: String = "compile->compile;test->test"
final val ExtrasVersion = "0.42.0"
val OpenAi4sVersion = "0.1.0-alpha5"
}
lazy val libs =
new {
lazy val catsAndCatsEffect3 = List(
"org.typelevel" %% "cats-core" % props.CatsVersion,
"org.typelevel" %% "cats-effect" % props.CatsEffect3Version,
)
lazy val catsParse = "org.typelevel" %% "cats-parse" % props.CatsParseVersion
lazy val effectie = List(
"io.kevinlee" %% "effectie-core" % props.EffectieVersion,
"io.kevinlee" %% "effectie-syntax" % props.EffectieVersion,
"io.kevinlee" %% "effectie-cats-effect3" % props.EffectieVersion,
)
lazy val loggerF = List(
"io.kevinlee" %% "logger-f-cats" % props.LoggerFVersion,
"io.kevinlee" %% "logger-f-slf4j" % props.LoggerFVersion,
)
lazy val logback = "ch.qos.logback" % "logback-classic" % "1.4.11"
lazy val extrasCats = "io.kevinlee" %% "extras-cats" % props.ExtrasVersion
lazy val extrasRender = "io.kevinlee" %% "extras-render" % props.ExtrasVersion
lazy val extrasScalaIo = "io.kevinlee" %% "extras-scala-io" % props.ExtrasVersion
lazy val openAi4s = List(
"io.kevinlee" %% "openai4s-core" % props.OpenAi4sVersion,
"io.kevinlee" %% "openai4s-config" % props.OpenAi4sVersion,
"io.kevinlee" %% "openai4s-api" % props.OpenAi4sVersion,
"io.kevinlee" %% "openai4s-http4s" % props.OpenAi4sVersion,
)
lazy val extras = List(
extrasCats,
extrasRender,
extrasScalaIo,
)
lazy val tests = new {
lazy val hedgehogLibs = List(
"qa.hedgehog" %% "hedgehog-core" % props.HedgehogVersion % Test,
"qa.hedgehog" %% "hedgehog-runner" % props.HedgehogVersion % Test,
"qa.hedgehog" %% "hedgehog-sbt" % props.HedgehogVersion % Test,
)
lazy val extrasTestingToolsCats = "io.kevinlee" %% "extras-testing-tools-cats" % props.ExtrasVersion % Test
lazy val extrasTestingToolsEffectie =
"io.kevinlee" %% "extras-testing-tools-effectie" % props.ExtrasVersion % Test
lazy val extrasHedgehogCe3 = "io.kevinlee" %% "extras-hedgehog-ce3" % props.ExtrasVersion % Test
}
}
// format: off
def prefixedProjectName(name: String): String = s"${props.RepoName}${if (name.isEmpty) "" else s"-$name"}"
// format: on
def module(projectName: String): Project = {
val prefixedName = prefixedProjectName(projectName)
Project(projectName, file(s"modules/$prefixedName"))
.settings(
name := prefixedName,
useAggressiveScalacOptions := true,
// scalacOptions ++= List("-source:3.1", "-Yexplicit-nulls"),
scalacOptions ++= List("-source:3.3"),
scalacOptions ~= (existing =>
existing.filter(
_ != "-language:dynamics,existentials,higherKinds,reflectiveCalls,experimental.macros,implicitConversions,strictEquality"
)
),
libraryDependencies ++= libs.tests.hedgehogLibs,
wartremoverErrors ++= ProjectInfo.commonWarts((update / scalaBinaryVersion).value),
wartremoverExcluded ++= List(sourceManaged.value),
licenses := List("MIT" -> url("http://opensource.org/licenses/MIT")),
)
}