File tree Expand file tree Collapse file tree 4 files changed +29
-18
lines changed
Expand file tree Collapse file tree 4 files changed +29
-18
lines changed Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff line change 1+ import BintrayPlugin .autoImport ._
2+
13organization := " me.lessis"
24
35name := " retry"
46
5- version := " 0.2.0 "
7+ version := " 0.2.1 "
68
79description := " 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
1113libraryDependencies ++= 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
1517scalacOptions += " -feature"
1618
@@ -43,10 +45,8 @@ lsSettings
4345
4446LsKeys .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
Original file line number Diff line number Diff line change 1- sbt.version =0.13.0
1+ sbt.version =0.13.8
Original file line number Diff line number Diff line change 11addSbtPlugin(" 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" )
You can’t perform that action at this time.
0 commit comments