--- a/project/build/FisProject.scala Sun Apr 01 23:25:17 2012 +0200
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,51 +0,0 @@
-/*
- * Copyright 2011 Tomas Zeman <tzeman@volny.cz>
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-import sbt._
-
-class FisProject(info: ProjectInfo) extends DefaultWebProject(info) {
-
- val liftVer = "2.3"
-
- // lift
- val lift_squeryl = "net.liftweb" %% "lift-squeryl-record" % liftVer
- val lift_widgets = "net.liftweb" %% "lift-widgets" % liftVer
-
- // logging
- val logback = "ch.qos.logback" % "logback-classic" % "0.9.28" % "runtime"
-
- // servlet + jetty
- val servlet = "javax.servlet" % "servlet-api" % "2.5" % "provided"
- val jetty6 = "org.mortbay.jetty" % "jetty" % "6.1.23" % "test"
-
- // runtime
- val pgsql = "postgresql" % "postgresql" % "8.4-702.jdbc4"
-
- // testing
- val scalatest = "org.scalatest" % "scalatest" % "1.3" % "test"
- val h2 = "com.h2database" % "h2" % "1.2.142" % "test"
-
- // use local mvn repo
- val mavenLocal = "Local Maven Repository" at "file://" + Path.userHome +
- "/.m2/repository"
-
- /*
- override def compileOptions = super.compileOptions ++
- Seq(Unchecked)
- */
-}
-
-
-// vim: set ts=2 sw=2 et: