10000 Updated project sbt settings. · randomcoding/scala-utilities@83b8f3d · GitHub
[go: up one dir, main page]

Skip to content

Commit 83b8f3d

Browse files
committed
Updated project sbt settings.
Lift 2.4 requires scala 2.9.1 not 2.9.2 so I had to override the scala version in the lift project.
1 parent 930e8b2 commit 83b8f3d

File tree

2 files changed

+4
-7
lines changed

2 files changed

+4
-7
lines changed

project/Dependencies.scala

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,6 @@ object Dependencies {
2424
val jodaTime = "joda-time" % "joda-time" % "2.0"
2525
val jodaConvert = "org.joda" % "joda-convert" % "1.2"
2626

27-
// jetty
28-
val jettyVersion = "8.0.3.v20111011"
29-
val jetty = "org.eclipse.jetty" % "jetty-webapp" % jettyVersion % "container"
3027
val logback = "ch.qos.logback" % "logback-classic" % "1.0.0"
3128

3229
val scalatest = "org.scalatest" %% "scalatest" % "1.8" % "test"
@@ -37,7 +34,6 @@ object Dependencies {
3734
val testDeps = Seq(scalatest)
3835
val liftDeps = Seq(liftUtil, liftCommon, liftWebkit, liftMongoRecord, rogue)
3936
val loggingDeps = Seq(logback, groovy, liftCommon)
40-
val jettyDeps = Seq(jetty)
4137
val jodaDeps = Seq(jodaTime, jodaConvert)
4238
}
4339

project/ProjectBuild.scala

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,12 +29,13 @@ object ProjectBuild extends Build {
2929
lazy val liftProject: Project = Project("lift",
3030
file("scala-utilities-lift"),
3131
settings = buildSettings ++ Seq(libraryDependencies ++= liftProjectDeps,
32-
name := "scala-utilities-lift"
32+
name := "scala-utilities-lift",
33+
scalaVersion := "2.9.1"
3334
)
34-
) dependsOn(coreProject)
35+
)
3536

3637
val commonDeps = testDeps ++ jodaDeps
3738
val coreProjectDeps = commonDeps
38-
val liftProjectDeps = commonDeps ++ liftDeps ++ jettyDeps
39+
val liftProjectDeps = commonDeps ++ liftDeps
3940
}
4041

0 commit comments

Comments
 (0)
0