Skip to content

Commit afa651b

Browse files
committed
Release
1 parent 5d7bacf commit afa651b

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

project/Build.scala

+4-2
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ object Build extends Build {
77

88
lazy val buildSettings = Seq(
99
organization := "info.folone",
10-
version := "0.11-SNAPSHOT",
10+
version := "0.11",
1111

1212
scalaVersion := "2.10.3",
1313
crossScalaVersions := Seq("2.9.3", "2.10.3"),
@@ -33,7 +33,7 @@ object Build extends Build {
3333
if (v.trim.endsWith("SNAPSHOT"))
3434
Some("snapshots" at nexus + "content/repositories/snapshots")
3535
else
36-
Some("releases" at nexus + "service/local/staging/deploy/maven2")
36+
Some("staging" at nexus + "service/local/staging/deploy/maven2")
3737
}
3838

3939
lazy val credentialsSetting = credentials += {
@@ -65,6 +65,8 @@ object Build extends Build {
6565
"org.scalaz" %% "scalaz-scalacheck-binding" % "7.1.0-M3" % "test"
6666
)
6767
},
68+
publishMavenStyle := true,
69+
publishArtifact in Test := false,
6870
credentialsSetting,
6971
publishSetting,
7072
pomExtra := (

0 commit comments

Comments
 (0)