From 07e3d8b77b9b95b539582da1f9230b36bc0fb636 Mon Sep 17 00:00:00 2001 From: Naden Date: Wed, 31 Jan 2024 20:31:39 +1100 Subject: [PATCH] Updates --- build.sbt | 13 ++++++++++++- project/plugins.sbt | 6 ++---- 2 files changed, 14 insertions(+), 5 deletions(-) diff --git a/build.sbt b/build.sbt index 15f7050..748f4fc 100644 --- a/build.sbt +++ b/build.sbt @@ -1 +1,12 @@ -name := "search" \ No newline at end of file +import sbt._ +import com.harana.sbt.common._ + +val search = haranaCrossProject("search").in(file(".")) + .settings( + libraryDependencies += + "com.harana" %%% "web" % "1.0.0" + ) + .jsSettings() + .jvmSettings() + +val root = haranaRootProject(search) \ No newline at end of file diff --git a/project/plugins.sbt b/project/plugins.sbt index 934d7f7..0b98bed 100644 --- a/project/plugins.sbt +++ b/project/plugins.sbt @@ -1,4 +1,2 @@ -addSbtPlugin("com.geirsson" % "sbt-ci-release" % "1.5.7") -addSbtPlugin("com.indoorvivants" % "sbt-commandmatrix" % "0.0.5") -addSbtPlugin("org.scalablytyped.converter" % "sbt-converter" % "1.0.0-beta40") -addSbtPlugin("org.scala-js" % "sbt-scalajs" % "1.13.2") \ No newline at end of file +resolvers += Resolver.url("harana", url("https://maven.pkg.github.com/harana/sbt-plugin"))(Patterns("[organisation]/[module]/[revision]/[artifact].[ext]") ) +addSbtPlugin("com.harana" % "sbt_js_jvm" % "1.0.0") \ No newline at end of file