Skip to content

Commit 138a60a

Browse files
committed
last version update
1 parent fd30600 commit 138a60a

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

project/ScalaJSON.scala

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,10 +31,10 @@ object Repository {
3131
val snapshotRepo = "snapshots" at Repository.snapshots
3232
val releaseRepo = "releases" at Repository.releases
3333

34-
val globalSuffix = "" //"-global"
34+
val publishSuffix = "-local" //"-global"
3535

3636
def repo(isSnapshot: Boolean) = if (isSnapshot) Repository.snapshots else Repository.releases
37-
def globalPublishTo(isSnapshot: Boolean) = repo(isSnapshot) + globalSuffix
37+
def globalPublishTo(isSnapshot: Boolean) = repo(isSnapshot) + publishSuffix
3838
def userCredentials = (Path.userHome / ".ivy2" / "credentials" ** "*").filter(_.isFile).get.map(Credentials(_))
3939
}
4040

@@ -46,7 +46,7 @@ object ScalaJSON {
4646
organization := "com.mediamath",
4747
organizationName := "MediaMath, Inc",
4848
organizationHomepage := Some(url("http://www.mediamath.com")),
49-
crossScalaVersions := Seq(scalaVersion.value, "2.10.4")
49+
crossScalaVersions := Seq(scalaVersion.value, "2.10.5")
5050
)
5151

5252
val commonSettings = baseSettings ++ Seq(

0 commit comments

Comments
 (0)