Ben Chuanlong Du's Blog

It is never too late to learn.

Maven Dependencies

Things on this page are fragmentary and immature notes/thoughts of the author. Please read with your own judgement!

Properties

<properties>
  <scala.version>2.11.11</scala.version>
</properties>

Dependencies

Unit Test

<dependency>
    <groupId>junit</groupId>
    <artifactId>junit</artifactId>
    <version>4.11</version>
    <scope>test</scope>
</dependency>

specs

<dependency>
    <groupId …

Scala Dependencies for SBT

Things on this page are fragmentary and immature notes/thoughts of the author. Please read with your own judgement!

  1. Joda Time

    "joda-time" % "joda-time" % "2.9.9"
    
  2. Scala XML Support

    "org.scala-lang.modules" %% "scala-xml" % "1.0.6"
    
  3. Scala Parser Combinators

    "org.scala-lang.modules" %% "scala-parser-combinators" % "1.0.4"
    
  4. Scala Swing

    "org.scala-lang …