Skip to content
This repository has been archived by the owner on Apr 23, 2019. It is now read-only.

Update scala-uri to latest #142

Open
wants to merge 1 commit into
base: 2.7.x
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion app/v1/post/PostRouter.scala
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ class PostRouter @Inject()(controller: PostController) extends SimpleRouter {
val prefix = "/v1/posts"

def link(id: PostId): String = {
import com.netaporter.uri.dsl._
import io.lemonlabs.uri.dsl._
val url = prefix / id.toString
url.toString()
}
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ dependencies {
play "org.joda:joda-convert:2.1.2"
play "net.logstash.logback:logstash-logback-encoder:5.6"

play "com.netaporter:scala-uri_$scalaVersion:0.4.16"
play "io.lemonlabs:scala-uri_$scalaVersion:1.4.1"
play "net.codingwell:scala-guice_$scalaVersion:4.2.1"

playTest "org.scalatestplus.play:scalatestplus-play_$scalaVersion:4.0.0-RC2"
Expand Down
2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ libraryDependencies += guice
libraryDependencies += "org.joda" % "joda-convert" % "2.1.2"
libraryDependencies += "net.logstash.logback" % "logstash-logback-encoder" % "5.2"

libraryDependencies += "com.netaporter" %% "scala-uri" % "0.4.16"
libraryDependencies += "io.lemonlabs" %% "scala-uri" % "1.4.1"
libraryDependencies += "net.codingwell" %% "scala-guice" % "4.2.1"

libraryDependencies += "org.scalatestplus.play" %% "scalatestplus-play" % "4.0.1" % Test
Expand Down