Skip to content

Commit

Permalink
Add sbt build script.
Browse files Browse the repository at this point in the history
  • Loading branch information
Joni Freeman committed Aug 12, 2009
1 parent 22147cf commit 07b9819
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 0 deletions.
4 changes: 4 additions & 0 deletions lift-json/project/build.properties
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
#Project properties
project.name=json
project.organization=net.liftweb
project.version=1.1-SNAPSHOT
11 changes: 11 additions & 0 deletions lift-json/project/build/src/LiftJson.scala
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
import sbt._

class LiftJson(info: ProjectInfo) extends DefaultProject(info) {
val specs = "org.scala-tools.testing" % "specs" % "1.5.0"
val scalacheck = "org.scala-tools.testing" % "scalacheck" % "1.5"

override def ivyXML =
<publications>
<artifact name="lift-json" type="jar" ext="jar"/>
</publications>
}

0 comments on commit 07b9819

Please sign in to comment.