project/build/LiftProject.scala
changeset 24 57624188c7f1
parent 23 fff56e1c0070
child 25 6ed154cb8b32
equal deleted inserted replaced
23:fff56e1c0070 24:57624188c7f1
     1 /*
       
     2  * Copyright 2011 Tomas Zeman <tzeman@volny.cz>
       
     3  *
       
     4  * Licensed under the Apache License, Version 2.0 (the "License");
       
     5  * you may not use this file except in compliance with the License.
       
     6  * You may obtain a copy of the License at
       
     7  *
       
     8  *     http://www.apache.org/licenses/LICENSE-2.0
       
     9  *
       
    10  * Unless required by applicable law or agreed to in writing, software
       
    11  * distributed under the License is distributed on an "AS IS" BASIS,
       
    12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
       
    13  * See the License for the specific language governing permissions and
       
    14  * limitations under the License.
       
    15  */
       
    16 import sbt._
       
    17 
       
    18 class LiftProject(info: ProjectInfo) extends DefaultProject(info) {
       
    19 
       
    20   val liftVer = "2.3"
       
    21 
       
    22   // lift
       
    23   val lift_mapper = "net.liftweb" %% "lift-mapper" % liftVer
       
    24   val lift_widgets = "net.liftweb" %% "lift-widgets" % liftVer
       
    25   val lift_record = "net.liftweb" %% "lift-record" % liftVer
       
    26 
       
    27   // logging
       
    28   val logback = "ch.qos.logback" % "logback-classic" % "0.9.28" % "runtime"
       
    29 
       
    30   // servlet + jetty
       
    31   val servlet = "javax.servlet" % "servlet-api" % "2.5" % "provided"
       
    32   val jetty6 = "org.mortbay.jetty" % "jetty" % "6.1.23" % "test"
       
    33 
       
    34   // testing
       
    35   val scalatest = "org.scalatest" % "scalatest" % "1.1" % "test"
       
    36   val h2 = "com.h2database" % "h2" % "1.2.142" % "test"
       
    37 
       
    38   // use local mvn repo
       
    39   val mavenLocal = "Local Maven Repository" at "file://" + Path.userHome +
       
    40     "/.m2/repository"
       
    41 
       
    42   /*
       
    43   override def compileOptions = super.compileOptions ++
       
    44     Seq(Unchecked)
       
    45   */
       
    46 }
       
    47 
       
    48 
       
    49 // vim: set ts=2 sw=2 et: