-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.sbt
82 lines (76 loc) · 2.79 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
Global / onChangedBuildSource := ReloadOnSourceChanges
inThisBuild(
Seq(
organization := "com.github.cornerman",
licenses := Seq("MIT License" -> url("https://opensource.org/licenses/MIT")),
homepage := Some(url("https://github.com/cornerman/scala-db-codegen")),
scmInfo := Some(
ScmInfo(
url("https://github.com/cornerman/scala-db-codegen"),
"scm:git:git@github.com:cornerman/scala-db-codegen.git",
Some("scm:git:git@github.com:cornerman/scala-db-codegen.git"),
)
),
pomExtra :=
<developers>
<developer>
<id>jkaroff</id>
<name>Johannes Karoff</name>
<url>https://github.com/cornerman</url>
</developer>
</developers>,
)
)
// TODO: Use sbt-cross to workaround: https://github.com/sbt/sbt/issues/5586
lazy val codegen = project
.settings(
name := "scala-db-codegen",
libraryDependencies ++= Seq(
"org.scala-lang" % "scala-reflect" % scalaVersion.value,
"org.scalatra.scalate" %% "scalate-core" % "1.10.1",
"org.scalameta" %% "scalafmt-core" % "3.8.1",
"org.flywaydb" % "flyway-core" % "10.6.0",
"org.xerial" % "sqlite-jdbc" % "3.44.1.0",
"org.postgresql" % "postgresql" % "42.7.1",
"mysql" % "mysql-connector-java" % "8.0.33",
"org.mariadb.jdbc" % "mariadb-java-client" % "3.1.2",
"us.fatehi" % "schemacrawler-tools" % "16.21.1",
"us.fatehi" % "schemacrawler-postgresql" % "16.21.1",
"us.fatehi" % "schemacrawler-sqlite" % "16.21.1",
"us.fatehi" % "schemacrawler-mysql" % "16.21.1",
),
)
.cross
lazy val codegen212 = codegen("2.12.19")
lazy val codegen213 = codegen("2.13.13")
lazy val cli = project
.settings(
name := "scala-db-codegen-cli",
scalaVersion := "2.13.13",
crossScalaVersions := Seq("2.13.13"),
libraryDependencies ++= Seq(
"com.lihaoyi" %% "mainargs" % "0.7.1"
),
)
.dependsOn(codegen213)
lazy val pluginSbt = project
.settings(
name := "sbt-db-codegen",
scalaVersion := "2.12.19",
crossScalaVersions := Seq("2.12.19"),
sbtPlugin := true,
publishMavenStyle := true,
)
.dependsOn(codegen212)
lazy val pluginMill = project
.settings(
name := "mill-db-codegen",
scalaVersion := "2.13.13",
crossScalaVersions := Seq("2.13.13"),
libraryDependencies ++= Seq(
"com.lihaoyi" %% "mill-main" % "0.11.7" % Provided,
"com.lihaoyi" %% "mill-main-api" % "0.11.7" % Provided,
"com.lihaoyi" %% "mill-scalalib" % "0.11.7" % Provided,
),
)
.dependsOn(codegen213)