Skip to content

Commit

Permalink
initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
jamesgolick committed Apr 21, 2011
0 parents commit 2b1d483
Show file tree
Hide file tree
Showing 3 changed files with 26 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
target/
lib_managed/
src_managed/
project/boot/
dist
8 changes: 8 additions & 0 deletions project/build.properties
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
#Project properties
#Thu Apr 21 10:39:29 PDT 2011
project.organization=bitlove
project.name=statsd.scala
sbt.version=0.7.4
project.version=0.0.1
build.scala.versions=2.8.0
project.initialize=false
13 changes: 13 additions & 0 deletions project/build/StatsdProjects.scala
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
import sbt._

class StatsdProject(info: ProjectInfo) extends DefaultProject(info) {
val codaRepo = "Coda Hale's Repository" at "http://repo.codahale.com/"
val specsRepo = "Specs Repo" at
"http://nexus.scala-tools.org/content/repositories/snapshots"
val snapshotsRep = "Scala Tools Snapshots Repository" at
"http://scala-tools.org/repo-snapshots/"

val metrics = "com.yammer" %% "metrics" % "1.0.7" withSources()
val specs = "org.scala-tools.testing" %% "specs" % "1.6.5"
val mockito = "org.mockito" % "mockito-all" % "1.8.5"
}

0 comments on commit 2b1d483

Please sign in to comment.