Skip to content

Commit

Permalink
Add mima exclusion.
Browse files Browse the repository at this point in the history
  • Loading branch information
htmldoug committed Aug 16, 2018
1 parent 66fdadb commit c373419
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,10 @@ lazy val mimaSettings = mimaDefaultSettings ++ Seq(
ProblemFilters.exclude[ReversedMissingMethodProblem]("play.libs.ws.StandaloneWSRequest.getMethod"),
ProblemFilters.exclude[ReversedMissingMethodProblem]("play.libs.ws.StandaloneWSRequest.setAuth"),

// Added in #268 for 2.0.0
ProblemFilters.exclude[ReversedMissingMethodProblem]("play.libs.ws.StandaloneWSRequest.setUrl"),
ProblemFilters.exclude[ReversedMissingMethodProblem]("play.api.libs.ws.StandaloneWSRequest.withUrl"),

// Now have a default implementation at the interface
ProblemFilters.exclude[DirectMissingMethodProblem]("play.libs.ws.ahc.StandaloneAhcWSRequest.getPassword"),
ProblemFilters.exclude[DirectMissingMethodProblem]("play.libs.ws.ahc.StandaloneAhcWSRequest.getUsername"),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -204,8 +204,8 @@ trait StandaloneWSRequest {
def withProxyServer(proxyServer: WSProxyServer): Self

/**
* Sets the url for this request.
*/
* Sets the url for this request.
*/
def withUrl(url: String): Self

/**
Expand Down

0 comments on commit c373419

Please sign in to comment.