forked from btd/scala-freemarker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.sbt
24 lines (16 loc) · 920 Bytes
/
build.sbt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
name := "circumflex-ftl"
organization := "ru.circumflex"
version := "2.1.1"
scalaVersion := "2.9.1"
scalacOptions ++= Seq("-deprecation", "-unchecked")
resolvers ++= Seq ("scala-tools snapshots" at "http://scala-tools.org/repo-snapshots")
publishTo := Some(Resolver.file("Github Pages", Path.userHome / "projects" / "maven2" asFile) (Patterns(true, Resolver.mavenStyleBasePattern)))
publishMavenStyle := true
libraryDependencies ++= Seq(
"org.freemarker" % "freemarker" % "2.3.18",
"net.liftweb" %% "lift-util" % "2.4-SNAPSHOT" % "compile",
"net.liftweb" %% "lift-common" % "2.4-SNAPSHOT" % "compile",
"commons-beanutils" % "commons-beanutils" % "1.8.0",
"commons-io" % "commons-io" % "2.1",
"org.apache.commons" % "commons-lang3" % "3.1" % "test",
"org.scala-tools.testing" %% "specs" % "1.6.9" % "test")