Skip to content

Commit

Permalink
Scala 2 11 support (#10)
Browse files Browse the repository at this point in the history
* publish jars for scala 2-11 as well

* update homepage link

* add support for scala 2.13 and play 2.7
  • Loading branch information
sriraamas authored and jjudd committed Aug 5, 2019
1 parent 28baad7 commit b2a37b1
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 15 deletions.
10 changes: 9 additions & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,16 @@ def play = Project("play", file("play")).cross.cross(playAxis)
def `play-active` = Project("play-active", file("play-active"))
.cross.cross(playAxis).dependsOn(CrossableProject.toDependency(play))

lazy val `play_2.13_2.7` = play("2.7.3")("2.13.0")

lazy val `play_2.12_2.7` = play("2.7.3")("2.12.8")

lazy val `play_2.12_2.6` = play("2.6.23")("2.12.8")

lazy val `play_2.11_2.7` = play("2.7.3")("2.11.12")

lazy val `play_2.11_2.6` = play("2.6.23")("2.11.12")

inScope(Global)(Seq(
credentials += Credentials(
"Sonatype Nexus Repository Manager",
Expand All @@ -17,7 +25,7 @@ inScope(Global)(Seq(
sys.env.getOrElse("SONATYPE_PASSWORD", ""
)),
developers += Developer("pauldraper", "Paul Draper", "[email protected]", url("https://github.com/pauldraper")),
homepage := Some(url("https://git.lucidchart.com/lucidsoftware/opentracing-playframework")),
homepage := Some(url("https://github.com/lucidsoftware/opentracing-playframework")),
licenses += "Apache 2.0 License" -> url("https://www.apache.org/licenses/LICENSE-2.0"),
organization := "com.lucidchart",
organizationHomepage := Some(url("http://opentracing.io/")),
Expand Down
14 changes: 0 additions & 14 deletions play/src/main/scala/io/opentracing/play/TagsSpanTagger.scala

This file was deleted.

0 comments on commit b2a37b1

Please sign in to comment.