Skip to content

Commit

Permalink
WIP for CSS Selectors
Browse files Browse the repository at this point in the history
  • Loading branch information
dpp committed Aug 27, 2012
1 parent e18d32f commit 39c4081
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 3 deletions.
1 change: 1 addition & 0 deletions build.sbt
Expand Up @@ -14,6 +14,7 @@ organizationName in ThisBuild := "WorldWide Conferencing, LLC"

crossScalaVersions in ThisBuild := Seq("2.9.2", "2.9.1-1", "2.9.1", "2.9.0-1", "2.9.0")


libraryDependencies in ThisBuild ++= Seq(specs2, scalacheck)

// Settings for Sonatype compliance
Expand Down
4 changes: 2 additions & 2 deletions core/util/src/main/scala/net/liftweb/util/CssSel.scala
Expand Up @@ -37,9 +37,9 @@ trait CssSel extends Function1[NodeSeq, NodeSeq] {
/**
* promote a String to a ToCssBindPromotor
*/
/*
private implicit def strToCssBindPromoter(str: String): ToCssBindPromoter =
new ToCssBindPromoter(Full(str), CssSelectorParser.parse(str))

new ToCssBindPromoter(Full(str), CssSelectorParser.parse(str)) */
}

/**
Expand Down
2 changes: 1 addition & 1 deletion project/Build.scala
Expand Up @@ -70,7 +70,7 @@ object BuildDef extends Build {
.dependsOn(actor, json)
.settings(description := "Utilities Library",
parallelExecution in Test := false,
libraryDependencies ++= Seq(joda_time, commons_codec, javamail, log4j, htmlparser))
libraryDependencies <++= scalaVersion {sv => Seq(scala_compiler(sv), joda_time, commons_codec, javamail, log4j, htmlparser)})


// Web Projects
Expand Down
1 change: 1 addition & 0 deletions project/Dependencies.scala
Expand Up @@ -44,6 +44,7 @@ object Dependencies {
lazy val paranamer = "com.thoughtworks.paranamer" % "paranamer" % "2.4.1"
lazy val scalajpa = "org.scala-libs" % "scalajpa" % "1.4" cross CVMappingAll
lazy val scalap: ModuleMap = "org.scala-lang" % "scalap" % _
lazy val scala_compiler: ModuleMap = "org.scala-lang" % "scala-compiler" % _
lazy val scalaz_core: ModuleMap = sv => scalazGroup(sv) % "scalaz-core" % scalazVersion(sv) cross CVMappingAll
lazy val slf4j_api = "org.slf4j" % "slf4j-api" % slf4jVersion
lazy val squeryl = "org.squeryl" % "squeryl" % "0.9.5-1" cross crossMapped("2.9.1-1" -> "2.9.1", "2.8.2" -> "2.8.1")
Expand Down

0 comments on commit 39c4081

Please sign in to comment.