Skip to content

Commit 27567df

Browse files
committed
Refacotor Build.scala for msgpack-jackson
1 parent 4dce386 commit 27567df

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

project/Build.scala

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -132,10 +132,12 @@ object Build extends Build {
132132
id = "msgpack-jackson",
133133
base = file("msgpack-jackson"),
134134
settings = buildSettings ++ Seq(
135+
name := "jackson-dataformat-msgpack",
135136
description := "Jackson extension that adds support for MessagePack",
136-
libraryDependencies ++= jacksonLib
137+
libraryDependencies ++= jacksonLib,
138+
testOptions += Tests.Argument(TestFrameworks.JUnit, "-q", "-v")
137139
)
138-
)
140+
).dependsOn(msgpackCore)
139141

140142
object Dependencies {
141143

@@ -150,7 +152,6 @@ object Build extends Build {
150152

151153
val jacksonLib = Seq(
152154
"com.fasterxml.jackson.core" % "jackson-databind" % "2.4.3",
153-
"org.msgpack" % "msgpack-core" % "0.7.0-p1",
154155
"com.novocode" % "junit-interface" % "0.10" % "test",
155156
"org.apache.commons" % "commons-math3" % "3.3" % "test"
156157
)

0 commit comments

Comments
 (0)