Skip to content

Commit f912c91

Browse files
committed
Merge pull request #13 from antonkulaga/master
updated dependencies, extended gitignore
2 parents c67876f + bcdc1bc commit f912c91

File tree

4 files changed

+29
-18
lines changed

4 files changed

+29
-18
lines changed

.gitignore

Lines changed: 19 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,19 @@
1-
target
1+
*.class
2+
*.log
3+
4+
# sbt specific
5+
.cache/
6+
.history/
7+
.lib/
8+
dist/*
9+
target/
10+
lib_managed/
11+
src_managed/
12+
project/boot/
13+
project/plugins/project/
14+
15+
# Scala-IDE specific
16+
.scala_dependencies
17+
.worksheet
18+
19+
.idea

build.sbt

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,18 @@
1+
import BintrayPlugin.autoImport._
2+
13
organization := "me.lessis"
24

35
name := "retry"
46

5-
version := "0.2.0"
7+
version := "0.2.1"
68

79
description := "a library of simple primitives for asynchronously retrying Scala Futures"
810

9-
crossScalaVersions := Seq("2.10.4", "2.11.1")
11+
crossScalaVersions := Seq("2.10.5", "2.11.6")
1012

1113
libraryDependencies ++= Seq(
1214
"me.lessis" %% "odelay-core" % "0.1.0",
13-
"org.scalatest" %% "scalatest" % "2.2.0" % "test")
15+
"org.scalatest" %% "scalatest" % "2.2.4" % "test")
1416

1517
scalacOptions += "-feature"
1618

@@ -43,10 +45,8 @@ lsSettings
4345

4446
LsKeys.tags in LsKeys.lsync := Seq("future", "retry")
4547

46-
bintraySettings
47-
48-
bintray.Keys.packageLabels in bintray.Keys.bintray := (LsKeys.tags in LsKeys.lsync).value
48+
bintrayPackageLabels := (LsKeys.tags in LsKeys.lsync).value
4949

50-
resolvers += bintray.Opts.resolver.mavenRepo("softprops")
50+
resolvers += sbt.Resolver.bintrayRepo("softprops","maven")
5151

52-
externalResolvers in LsKeys.lsync := (resolvers in bintray.Keys.bintray).value
52+
externalResolvers in LsKeys.lsync := (resolvers in bintray).value

project/build.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
sbt.version=0.13.0
1+
sbt.version=0.13.8

project/plugins.sbt

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,3 @@
11
addSbtPlugin("me.lessis" % "ls-sbt" % "0.1.3")
22

3-
//addSbtPlugin("com.eed3si9n" % "sbt-buildinfo" % "0.2.0")
4-
5-
resolvers += Resolver.url(
6-
"bintray-sbt-plugin-releases",
7-
url("http://dl.bintray.com/content/sbt/sbt-plugin-releases"))(
8-
Resolver.ivyStylePatterns)
9-
10-
addSbtPlugin("me.lessis" % "bintray-sbt" % "0.1.2")
3+
addSbtPlugin("me.lessis" % "bintray-sbt" % "0.3.0")

0 commit comments

Comments
 (0)