@@ -25,13 +25,12 @@ object Repository {
2525
2626object ScalaJSON {
2727 val commonSettings = Seq (
28- version := " 0.1 " ,
28+ name := " scala-json " ,
2929 scalaVersion := " 2.11.5" ,
3030 organization := " com.mediamath" ,
3131 organizationName := " MediaMath, Inc" ,
3232 organizationHomepage := Some (url(" http://www.mediamath.com" )),
3333 credentials ++= Repository .userCredentials,
34- publishMavenStyle := true ,
3534 crossPaths := true ,
3635 publishTo := Some (" publish" at Repository .globalPublishTo(isSnapshot.value)),
3736 publishArtifact in Test := false ,
@@ -42,7 +41,9 @@ object ScalaJSON {
4241 libraryDependencies <++= scalaVersion { x =>
4342 Seq (
4443 " org.scala-lang" % " scala-reflect" % x,
45- " org.scala-lang" % " scala-compiler" % x
44+ " org.scala-lang" % " scala-compiler" % x,
45+
46+ " com.lihaoyi" %% " utest" % " 0.3.0" % " test"
4647 )
4748 },
4849
@@ -54,13 +55,9 @@ object ScalaJSON {
5455 testFrameworks += new TestFramework (" utest.runner.Framework" )
5556 )
5657
57- val settings = commonSettings ++ Seq (
58- name := " scala-json"
59- )
58+ val settings = commonSettings
6059
6160 val jsSettings = commonSettings ++ Seq (
62- name := " scala-json" ,
63-
6461 unmanagedSourceDirectories in Compile +=
6562 (baseDirectory in ThisBuild ).value / " src" / " main" / " scala" ,
6663 unmanagedSourceDirectories in Test +=
0 commit comments