diff --git a/.gitignore b/.gitignore index 4d3c838..5af4e6e 100644 --- a/.gitignore +++ b/.gitignore @@ -3,3 +3,10 @@ .metals/ .direnv */dist/ +/11-single-price-grid-component/.bloop/ + +*/project/project/ +*/project/metals.sbt +*/project/.bloop +*/project/target/ +*/target/ diff --git a/11-single-price-grid-component/build.sbt b/11-single-price-grid-component/build.sbt new file mode 100644 index 0000000..3dda577 --- /dev/null +++ b/11-single-price-grid-component/build.sbt @@ -0,0 +1,20 @@ +scalaVersion := "3.3.0" +fork := true + +ThisBuild / version := "0.0.1" +ThisBuild / organization := "industries.sunshine" + +lazy val root = (project in file(".")) + .settings( + name := "priceGrid", + libraryDependencies ++= Seq( + "com.lihaoyi" %% "cask" % "0.9.1", + "com.lihaoyi" %% "scalatags" % "0.12.0", + "com.lihaoyi" %% "mainargs" % "0.5.0" + ), + libraryDependencies ++= Seq( + "com.lihaoyi" %% "cask" % "0.9.1" % Test, + "com.lihaoyi" %% "scalatags" % "0.12.0" % Test, + "com.lihaoyi" %% "mainargs" % "0.5.0" % Test + ) + ) diff --git a/11-single-price-grid-component/project/build.properties b/11-single-price-grid-component/project/build.properties new file mode 100644 index 0000000..40b3b8e --- /dev/null +++ b/11-single-price-grid-component/project/build.properties @@ -0,0 +1 @@ +sbt.version=1.9.0