Skip to content

Commit 8dc023d

Browse files
committed
feat: support legacy
1 parent 51f2dd7 commit 8dc023d

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

build.sbt

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -10,28 +10,28 @@ lazy val copyJar = InputKey[Unit]("copyJar")
1010

1111
lazy val plugin = (project in file("plugin"))
1212
.settings(
13-
name := "bukkit-scala-plugin",
13+
name := "bukkit-scala-plugin-legacy",
1414
version := "1.14.1",
1515
scalaVersion := "2.13.10",
16-
crossScalaVersions := Seq("2.13.10", "3.1.1"),
16+
crossScalaVersions := Seq("2.13.10", "3.2.1"),
1717
resolvers ++= Seq(
1818
Resolver.mavenLocal
1919
),
2020
libraryDependencies ++= Seq(
21-
"org.spigotmc" % "spigot-api" % "1.18.1-R0.1-SNAPSHOT" % "provided",
21+
"org.spigotmc" % "spigot-api" % "1.12.2-R0.1-SNAPSHOT" % "provided",
2222
"io.typecraft" % "bukkit-view-core" % "5.1.3",
2323
"io.typecraft" % "command-bukkit" % "0.8.0",
2424
"io.typecraft" % "command-scala" % "0.8.0",
2525
"io.typecraft" % "bukkit-object" % "0.4.1",
2626
"io.typecraft" %% "ender-core" % "0.1.0-SNAPSHOT", // TODO: why this not contains in `ender-bukkit` as a transitive
2727
"io.typecraft" %% "ender-bukkit" % "0.1.0-SNAPSHOT",
2828
"org.typelevel" %% "cats-core" % "2.7.0",
29-
"org.tpolecat" %% "doobie-core" % "1.0.0-RC2"
29+
"org.tpolecat" %% "doobie-core" % "1.0.0-RC2",
30+
"io.circe" %% "circe-yaml-legacy" % "0.14.2-50-8e704e6"
3031
) ++ Seq(
3132
"io.circe" %% "circe-core",
3233
"io.circe" %% "circe-generic",
33-
"io.circe" %% "circe-parser",
34-
"io.circe" %% "circe-yaml"
34+
"io.circe" %% "circe-parser"
3535
).map(_ % circeVersion),
3636
assemblyMergeStrategy := {
3737
case PathList("plugin.yml") => MergeStrategy.first

0 commit comments

Comments
 (0)