Skip to content

Commit 8894c91

Browse files
committed
feat!: update libraries
1 parent 51f2dd7 commit 8894c91

File tree

2 files changed

+9
-10
lines changed

2 files changed

+9
-10
lines changed

build.sbt

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -11,19 +11,19 @@ lazy val copyJar = InputKey[Unit]("copyJar")
1111
lazy val plugin = (project in file("plugin"))
1212
.settings(
1313
name := "bukkit-scala-plugin",
14-
version := "1.14.1",
15-
scalaVersion := "2.13.10",
16-
crossScalaVersions := Seq("2.13.10", "3.1.1"),
14+
version := "2.0.0",
15+
scalaVersion := "2.13.11",
16+
crossScalaVersions := Seq("2.13.11", "3.1.1"),
1717
resolvers ++= Seq(
1818
Resolver.mavenLocal
1919
),
2020
libraryDependencies ++= Seq(
2121
"org.spigotmc" % "spigot-api" % "1.18.1-R0.1-SNAPSHOT" % "provided",
22-
"io.typecraft" % "bukkit-view-core" % "5.1.3",
23-
"io.typecraft" % "command-bukkit" % "0.8.0",
24-
"io.typecraft" % "command-scala" % "0.8.0",
22+
"io.typecraft" % "bukkit-view-core" % "6.0.2",
23+
"io.typecraft" % "command-bukkit" % "1.1.1",
24+
"io.typecraft" % "command-scala" % "1.1.1",
2525
"io.typecraft" % "bukkit-object" % "0.4.1",
26-
"io.typecraft" %% "ender-core" % "0.1.0-SNAPSHOT", // TODO: why this not contains in `ender-bukkit` as a transitive
26+
"io.typecraft" %% "ender-core" % "0.1.0-SNAPSHOT", // TODO: why not be contained `ender-bukkit` as a transitive
2727
"io.typecraft" %% "ender-bukkit" % "0.1.0-SNAPSHOT",
2828
"org.typelevel" %% "cats-core" % "2.7.0",
2929
"org.tpolecat" %% "doobie-core" % "1.0.0-RC2"
Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,12 @@
11
package io.typecraft.bukkit.scala.plugin
22

33
import io.circe.generic.AutoDerivation
4-
import io.typecraft.command.scala.vavr.{EitherInstances, TupleInstances}
4+
import io.typecraft.command.scala.ScalaCommand
55
import io.typecraft.ender.AllExtension
66
import io.typecraft.ender.bukkit.AllBukkitExtension
77

88
object implicits
99
extends AutoDerivation
1010
with AllExtension
1111
with AllBukkitExtension
12-
with TupleInstances
13-
with EitherInstances
12+
with ScalaCommand

0 commit comments

Comments
 (0)