# HG changeset patch # User Tomas Zeman # Date 1317456152 -7200 # Node ID 57624188c7f1c641bfbafbac51c39a07ea491bc3 # Parent fff56e1c0070cba62ca4b0dcc4d7ecd2606b3241 sbt version bump -> 0.11.0 diff -r fff56e1c0070 -r 57624188c7f1 build.sbt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/build.sbt Sat Oct 01 10:02:32 2011 +0200 @@ -0,0 +1,22 @@ +name := "tz-lift-misc" + +version := "0.3-SNAPSHOT" + +organization := "net.tz.lift" + +scalaVersion := "2.8.1" + +{ +val liftVer = "2.3" +libraryDependencies ++= Seq( + "net.liftweb" %% "lift-mapper" % liftVer, + "net.liftweb" %% "lift-widgets" % liftVer, + "net.liftweb" %% "lift-record" % liftVer +) +} + +libraryDependencies ++= Seq( + "org.scalatest" %% "scalatest" % "1.5.1" % "test", +// "org.mortbay.jetty" % "jetty" % "6.1.26" % "jetty", + "ch.qos.logback" % "logback-classic" % "0.9.29" +) diff -r fff56e1c0070 -r 57624188c7f1 project/build.properties --- a/project/build.properties Wed Aug 24 08:09:32 2011 +0200 +++ b/project/build.properties Sat Oct 01 10:02:32 2011 +0200 @@ -1,7 +1,1 @@ -#Project properties -project.organization=net.tz.lift -project.name=tz-lift-misc -sbt.version=0.7.7 -project.version=0.3-SNAPSHOT -build.scala.versions=2.8.1 -project.initialize=false +sbt.version=0.11.0 diff -r fff56e1c0070 -r 57624188c7f1 project/build/LiftProject.scala --- a/project/build/LiftProject.scala Wed Aug 24 08:09:32 2011 +0200 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,49 +0,0 @@ -/* - * Copyright 2011 Tomas Zeman - * - * 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 LiftProject(info: ProjectInfo) extends DefaultProject(info) { - - val liftVer = "2.3" - - // lift - val lift_mapper = "net.liftweb" %% "lift-mapper" % liftVer - val lift_widgets = "net.liftweb" %% "lift-widgets" % liftVer - val lift_record = "net.liftweb" %% "lift-record" % 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" - - // testing - val scalatest = "org.scalatest" % "scalatest" % "1.1" % "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: