Skip to content

Commit

Permalink
1.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Valerian committed Sep 14, 2015
1 parent bba87fd commit c37ec79
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 6 deletions.
17 changes: 14 additions & 3 deletions project/Rediscala.scala
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ object Dependencies {
object RediscalaBuild extends Build {
val baseSourceUrl = "https://github.com/etaty/rediscala/tree/"

val v = "1.4.2"
val v = "1.5.0"

lazy val standardSettings = Defaults.defaultSettings ++
Seq(
Expand All @@ -52,6 +52,18 @@ object RediscalaBuild extends Build {
scalaVersion := "2.11.7",
crossScalaVersions := Seq("2.11.7", "2.10.4"),
licenses += ("Apache-2.0", url("http://www.apache.org/licenses/LICENSE-2.0.html")),
homepage := Some(url("https://github.com/non/rediscala")),
scmInfo := Some(ScmInfo(url("https://github.com/etaty/rediscala"), "scm:git:git@github.com:etaty/rediscala.git")),
apiURL := Some(url("http://etaty.github.io/rediscala/latest/api/")),
pomExtra := (
<developers>
<developer>
<id>etaty</id>
<name>Valerian Barbot</name>
<url>http://github.com/etaty/</url>
</developer>
</developers>
),
resolvers ++= Resolvers.resolversList,

publishMavenStyle := true,
Expand Down Expand Up @@ -79,8 +91,7 @@ object RediscalaBuild extends Build {
"-doc-source-url", baseSourceUrl + branch +"€{FILE_PATH}.scala"
)
}
) ++ site.settings ++ site.includeScaladoc(v +"/api") ++ site.includeScaladoc("latest/api") ++ ghpages.settings ++
bintray.Plugin.bintrayPublishSettings
) ++ site.settings ++ site.includeScaladoc(v +"/api") ++ site.includeScaladoc("latest/api") ++ ghpages.settings

lazy val BenchTest = config("bench") extend Test

Expand Down
9 changes: 6 additions & 3 deletions project/plugins.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@ resolvers += "jgit-repo" at "http://download.eclipse.org/jgit/maven"

addSbtPlugin("com.typesafe.sbt" % "sbt-site" % "0.8.1")

addSbtPlugin("com.typesafe.sbt" % "sbt-ghpages" % "0.5.3")
addSbtPlugin("com.typesafe.sbt" % "sbt-ghpages" % "0.5.4")

addSbtPlugin("com.eed3si9n" % "sbt-unidoc" % "0.3.1")
addSbtPlugin("com.eed3si9n" % "sbt-unidoc" % "0.3.3")

resolvers += Classpaths.sbtPluginReleases

Expand All @@ -20,4 +20,7 @@ resolvers += Resolver.url(
url("http://dl.bintray.com/content/sbt/sbt-plugin-releases"))(
Resolver.ivyStylePatterns)

addSbtPlugin("me.lessis" % "bintray-sbt" % "0.1.2")
addSbtPlugin("me.lessis" % "bintray-sbt" % "0.3.0")

addSbtPlugin("com.jsuereth" % "sbt-pgp" % "1.0.0")

0 comments on commit c37ec79

Please sign in to comment.