Skip to content
This repository has been archived by the owner on Dec 4, 2024. It is now read-only.

Commit

Permalink
Fixes #57 - initial commit. Includes reference to MacWire lib.
Browse files Browse the repository at this point in the history
  • Loading branch information
Alexander Weber committed Feb 11, 2016
1 parent ad2a300 commit fe22779
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions project/build.scala
Original file line number Diff line number Diff line change
Expand Up @@ -119,6 +119,12 @@ object Dependencies {
jclOverSlf4j % "compile",
log4jOverSlf4j % "compile",

// The macros subproject contains only code which is used at compile-time, hence the provided scope.
macWireMacros % "provided",
// The util subproject contains tagging, Wired and the @Module annotation; if you don't use these features, you don't need to include this dependency.
// macWireUtil % "compile",
macWireProxy % "compile",

// test
Test.junit % "test",
Test.mockito % "test"
Expand All @@ -141,6 +147,7 @@ object Dependency {
val Slf4j = "1.7.12"
val LiftMarkdown = "2.6.2"
val Glassfish = "2.2.6"
val MacWire = "2.2.2"

// test deps versions
val JUnit = "4.12"
Expand Down Expand Up @@ -176,6 +183,10 @@ object Dependency {
val julToSlf4j = "org.slf4j" % "jul-to-slf4j" % V.Slf4j
val jclOverSlf4j = "org.slf4j" % "jcl-over-slf4j" % V.Slf4j

val macWireMacros = "com.softwaremill.macwire" %% "macros" % V.MacWire
val macWireUtil = "com.softwaremill.macwire" %% "util" % V.MacWire
val macWireProxy = "com.softwaremill.macwire" %% "proxy" % V.MacWire

object Test {
val junit = "junit" % "junit" % V.JUnit
val mockito = "org.mockito" % "mockito-all" % V.Mockito
Expand Down

0 comments on commit fe22779

Please sign in to comment.