From 9b0b9bd93dc87f7affda6a4e8e4eb4f51af2b87d Mon Sep 17 00:00:00 2001 From: laderlappen Date: Tue, 5 Dec 2023 15:56:56 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=A5Removed=20unnecessary=20config?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- build.sbt | 32 -------------------------------- 1 file changed, 32 deletions(-) diff --git a/build.sbt b/build.sbt index fa1b176..5046568 100644 --- a/build.sbt +++ b/build.sbt @@ -2,10 +2,6 @@ scalaVersion := "3.3.1" scalacOptions ++= Seq("-Xmax-inlines", "50") -Compile / mainClass := Some("xyz.didx.DawnPatrol") - -testFrameworks += new TestFramework("munit.Framework") - libraryDependencies ++= Seq( "io.circe" %% "circe-core" % "0.14.6", "io.circe" %% "circe-parser" % "0.14.6", @@ -32,31 +28,3 @@ libraryDependencies ++= Seq( "org.typelevel" %% "log4cats-slf4j" % "2.6.0", "co.fs2" %% "fs2-core" % "3.9.3" ) - -libraryDependencies ++= Seq( - "org.typelevel" %% "toolkit-test" % "latest.release" % Test, - "io.circe" %% "circe-core" % "0.14.6" % Test, - "io.circe" %% "circe-parser" % "0.14.6" % Test, - "io.circe" %% "circe-generic" % "0.14.6" % Test, - "com.github.pureconfig" %% "pureconfig-core" % "0.17.4" % Test, - "com.github.pureconfig" %% "pureconfig-cats-effect" % "0.17.4" % Test, - "dev.profunktor" %% "redis4cats-effects" % "1.5.2" % Test, - "dev.profunktor" %% "redis4cats-log4cats" % "1.5.2" % Test, - "com.softwaremill.sttp.client4" %% "core" % "4.0.0-M6" % Test, - "com.softwaremill.sttp.client3" %% "core" % "3.9.1" % Test, - "com.softwaremill.sttp.client3" %% "circe" % "3.9.1" % Test, - "com.softwaremill.sttp.client3" %% "async-http-client-backend-cats" % "3.9.1" % Test, - "de.brendamour" % "jpasskit" % "0.3.3" % Test, - "com.outr" %% "scribe" % "3.12.2" % Test, - "com.lihaoyi" %% "upickle" % "3.1.3" % Test, - "dev.langchain4j" % "langchain4j" % "0.23.0" % Test, - "dev.langchain4j" % "langchain4j-hugging-face" % "0.23.0" % Test, - "com.xebia" %% "xef-scala" % "0.0.3" % Test, - "com.xebia" % "xef-pdf" % "0.0.3" % Test, - "com.xebia" % "xef-reasoning-jvm" % "0.0.3" % Test, - "com.xebia" % "xef-openai" % "0.0.3" % Test, - "ch.qos.logback" % "logback-classic" % "1.4.11" % Test, - "org.apache.logging.log4j" % "log4j-core" % "2.21.1" % Test, - "org.typelevel" %% "log4cats-slf4j" % "2.6.0" % Test, - "org.typelevel" %% "toolkit" % "latest.release" % Test -)