Skip to content
This repository has been archived by the owner on Sep 18, 2021. It is now read-only.

Commit

Permalink
allow building with sbt.
Browse files Browse the repository at this point in the history
  • Loading branch information
Robey Pointer authored and szegedi committed Jul 8, 2010
1 parent 1a3d112 commit 4e6d6dd
Show file tree
Hide file tree
Showing 4 changed files with 28 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
target
dist
twitterActors.tmproj
twitterActors.tmproj
project/boot/
project/plugins/target/
project/plugins/project/
project/plugins/src_managed/
lib_managed/
7 changes: 7 additions & 0 deletions project/build.properties
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
#Project properties
project.organization=com.twitter
project.name=twitterActors
sbt.version=0.7.3
project.version=1.0.0
build.scala.versions=2.7.7
project.initialize=false
8 changes: 8 additions & 0 deletions project/build/TwitterActorsProject.scala
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
import sbt._
import Process._
import com.twitter.sbt.{SubversionRepository, StandardProject}


class TwitterActorsProject(info: ProjectInfo) extends StandardProject(info) with SubversionRepository {
val specs = "org.scala-tools.testing" % "specs" % "1.6.2.1"
}
7 changes: 7 additions & 0 deletions project/plugins/Plugins.scala
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
import sbt._


class Plugins(info: ProjectInfo) extends PluginDefinition(info) {
val twitterNest = "com.twitter" at "http://www.lag.net/nest"
val defaultProject = "com.twitter" % "standard-project" % "0.5.10"
}

0 comments on commit 4e6d6dd

Please sign in to comment.