Skip to content

Commit

Permalink
build tweaks contributed by Fabian Steeg
Browse files Browse the repository at this point in the history
  • Loading branch information
Debasish Ghosh committed Aug 7, 2010
1 parent 6e83a8e commit f8afb58
Show file tree
Hide file tree
Showing 7 changed files with 34 additions and 287 deletions.
2 changes: 1 addition & 1 deletion .gitignore
Expand Up @@ -9,8 +9,8 @@ lib_managed
etags
TAGS
dist
build
target
build/target
deploy/*.jar
data
out
Expand Down
1 change: 1 addition & 0 deletions README.textile
Expand Up @@ -12,6 +12,7 @@ h2. Running the Test Cases
* Ensure that the Scala View Server is set up as per the document "Scala View Server":http://wiki.github.com/debasishg/scouchdb/scala-view-server
* run couchdb server
* sbt
* update
* clean
* compile
* test-only scouch.db.SCouchDbSpec
Expand Down

This file was deleted.

Binary file not shown.
274 changes: 0 additions & 274 deletions embedded-repo/sjson/json/sjson/0.5-SNAPSHOT/sjson-0.5-SNAPSHOT.pom

This file was deleted.

File renamed without changes.
32 changes: 32 additions & 0 deletions project/build/SCouchDbProject.scala
@@ -0,0 +1,32 @@
import sbt._

class SCouchDbProject(info: ProjectInfo) extends DefaultProject(info)
{
val scalaToolsSnapshots = "Scala-Tools Maven2 Snapshots Repository" at "http://scala-tools.org/repo-snapshots"
val scalaToolsReleases = "Scala-Tools Maven2 Releases Repository" at "http://scala-tools.org/repo-releases"
// val embeddedRepo = MavenRepository("Embedded Repo", (info.projectPath / "embedded-repo").asURL.toString)
val dispatch_json = "net.databinder" % "dispatch-json_2.8.0" % "0.7.4" % "compile"
val dispatch_http_json = "net.databinder" % "dispatch-http-json_2.8.0" % "0.7.4" % "compile"
val dispatch_http = "net.databinder" % "dispatch-http_2.8.0" % "0.7.4" % "compile"
val commons_logging = "commons-logging" % "commons-logging" % "1.1.1" % "compile"
val httpclient = "org.apache.httpcomponents" % "httpclient" % "4.0.1" % "compile"
val sjson = "sjson.json" % "sjson" % "0.7" % "compile"

val scalatest =
buildScalaVersion match {
case "2.7.7" =>
"org.scalatest" % "scalatest" % "1.0"
case "2.8.0.Beta1" =>
"org.scalatest" % "scalatest" % "1.0.1-for-scala-2.8.0.Beta1-with-test-interfaces-0.3-SNAPSHOT"
case "2.8.0.RC2" =>
"org.scalatest" % "scalatest" % "1.2-for-scala-2.8.0.RC2-SNAPSHOT" % "test"
case "2.8.0.RC3" =>
"org.scalatest" % "scalatest" % "1.2-for-scala-2.8.0.RC2-SNAPSHOT" % "test"
case "2.8.0.RC7" =>
"org.scalatest" % "scalatest" % "1.2-for-scala-2.8.0.RC7-SNAPSHOT" % "test"
case "2.8.0" =>
"org.scalatest" % "scalatest" % "1.2" % "test"
}

val junit = "junit" % "junit" % "4.8.1"
}

0 comments on commit f8afb58

Please sign in to comment.