Skip to content

Commit

Permalink
project skeleton
Browse files Browse the repository at this point in the history
  • Loading branch information
shuttie committed May 10, 2021
1 parent 30cea6e commit 2dce94d
Show file tree
Hide file tree
Showing 5 changed files with 49 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
.idea
project/project
project/target
target
.DS_STORE
.git
.bsp
3 changes: 3 additions & 0 deletions .scalafmt.conf
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
style = defaultWithAlign
maxColumn = 120
version = 2.7.5
33 changes: 33 additions & 0 deletions build.sbt
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
name := "featury"

version := "0.1"

scalaVersion := "2.13.5"

lazy val http4sVersion = "1.0.0-M21"
lazy val log4catsVersion = "2.1.0"
lazy val scalatestVersion = "3.2.8"
lazy val circeVersion = "0.13.0"
lazy val circeYamlVersion = "0.13.1"

libraryDependencies ++= Seq(
"org.typelevel" %% "cats-effect" % "3.1.0",
"com.github.blemale" %% "scaffeine" % "4.0.2",
"io.circe" %% "circe-yaml" % circeYamlVersion,
"io.circe" %% "circe-core" % circeVersion,
"io.circe" %% "circe-generic" % circeVersion,
"io.circe" %% "circe-generic-extras" % circeVersion,
"io.circe" %% "circe-parser" % circeVersion,
"org.http4s" %% "http4s-dsl" % http4sVersion,
"org.http4s" %% "http4s-blaze-server" % http4sVersion,
"org.http4s" %% "http4s-blaze-client" % http4sVersion,
"org.http4s" %% "http4s-circe" % http4sVersion,
"org.typelevel" %% "log4cats-core" % log4catsVersion,
"org.typelevel" %% "log4cats-slf4j" % log4catsVersion,
"org.scalatest" %% "scalatest" % scalatestVersion % Test,
"org.scalactic" %% "scalactic" % scalatestVersion % Test,
"org.scalatestplus" %% "scalacheck-1-14" % "3.2.2.0" % Test,
"ch.qos.logback" % "logback-classic" % "1.2.3",
"com.github.pathikrit" %% "better-files" % "3.9.1",
"com.github.scopt" %% "scopt" % "4.0.1"
)
1 change: 1 addition & 0 deletions project/build.properties
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
sbt.version = 1.5.1
5 changes: 5 additions & 0 deletions project/plugins.sbt
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
addSbtPlugin("org.jetbrains" % "sbt-ide-settings" % "1.1.0")

addSbtPlugin("com.timushev.sbt" % "sbt-updates" % "0.5.2")
addSbtPlugin("net.virtual-void" % "sbt-dependency-graph" % "0.10.0-RC1")
addSbtPlugin("org.scalameta" % "sbt-scalafmt" % "2.4.2")

0 comments on commit 2dce94d

Please sign in to comment.