Initial skeleton for the framework.

This commit is contained in:
sanjana
2018-01-03 09:12:43 +05:30
parent 864c9dd9a0
commit 4610245b38
4 changed files with 70 additions and 0 deletions

18
build.sbt Normal file
View File

@@ -0,0 +1,18 @@
import Dependencies._
lazy val root = (project in file(".")).
settings(
inThisBuild(List(
organization := "com.example",
scalaVersion := "2.12.3",
version := "0.1.0-SNAPSHOT")),
name := "LibreCaptcha",
libraryDependencies += scalaTest % Test,
libraryDependencies += "com.sksamuel.scrimage" %% "scrimage-core" % "2.1.8",
libraryDependencies += "com.sksamuel.scrimage" %% "scrimage-io-extra" % "2.1.8",
libraryDependencies += "com.sksamuel.scrimage" %% "scrimage-filters" % "2.1.8"
)