Advertisement
Guest User

build.sbt

a guest
Jun 28th, 2014
174
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Scala 0.56 KB | None | 0 0
  1. name := "jReddit"
  2.  
  3. version := "1.0.1-SNAPSHOT"
  4.  
  5. libraryDependencies += "org.sonatype.oss" % "oss-parent" % "7"
  6.  
  7. libraryDependencies += "com.googlecode.json-simple" % "json-simple" % "1.1.1"
  8.  
  9. libraryDependencies += "org.apache.commons" % "commons-lang3" % "3.3.1"
  10.  
  11. libraryDependencies += "org.apache.httpcomponents" % "httpclient" % "4.3.3"
  12.  
  13. libraryDependencies += "org.apache.commons" % "commons-io" % "1.3.2" % "test"
  14.  
  15. libraryDependencies += "org.mockito" % "mockito-core" % "1.9.5" % "test"
  16.  
  17. libraryDependencies += "junit" % "junit" % "4.8.1" % "test"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement