Skip to content
This repository has been archived by the owner on Nov 9, 2017. It is now read-only.

Commit

Permalink
Bump to Jackson 1.7.6.
Browse files Browse the repository at this point in the history
  • Loading branch information
codahale committed May 5, 2011
1 parent 40c2c82 commit 9c4210d
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions project/build/Jerkson.scala → project/build/JerksonProject.scala
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import sbt._

class Jerkson(info: ProjectInfo) extends DefaultProject(info)
with IdeaProject
with maven.MavenDependencies {
class JerksonProject(info: ProjectInfo) extends DefaultProject(info)
with IdeaProject
with maven.MavenDependencies {
/**
* Publish the source as well as the class files.
*/
Expand All @@ -22,15 +22,15 @@ class Jerkson(info: ProjectInfo) extends DefaultProject(info)
/**
* Dependencies
*/
val jacksonVersion = "1.7.4"
val jacksonCore = "org.codehaus.jackson" % "jackson-core-asl" % jacksonVersion withSources()
val jacksonMapper = "org.codehaus.jackson" % "jackson-mapper-asl" % jacksonVersion withSources()
val paranamer = "com.thoughtworks.paranamer" % "paranamer" % "2.3" withSources()
val jacksonVersion = "1.7.6"
val jacksonCore = "org.codehaus.jackson" % "jackson-core-asl" % jacksonVersion
val jacksonMapper = "org.codehaus.jackson" % "jackson-mapper-asl" % jacksonVersion
val paranamer = "com.thoughtworks.paranamer" % "paranamer" % "2.3"

/**
* Test Dependencies
*/
val specs = "org.scala-tools.testing" %% "specs" % "1.6.6" % "test" withSources()
val simplespec = "com.codahale" %% "simplespec" % "0.2.0" % "test" withSources()
val mockito = "org.mockito" % "mockito-all" % "1.8.4" % "test" withSources()
val specs = "org.scala-tools.testing" %% "specs" % "1.6.6" % "test"
val simplespec = "com.codahale" %% "simplespec" % "0.2.0" % "test"
val mockito = "org.mockito" % "mockito-all" % "1.8.4" % "test"
}

0 comments on commit 9c4210d

Please sign in to comment.