Skip to content

Commit

Permalink
Merge pull request #164 from dpratt/fix-unclosed-inputstream
Browse files Browse the repository at this point in the history
Remove deprecated OkHTTP OkUrlFactory
  • Loading branch information
eed3si9n authored Sep 10, 2017
2 parents 0419371 + 5d32ec2 commit 4da187a
Show file tree
Hide file tree
Showing 2 changed files with 195 additions and 138 deletions.
11 changes: 10 additions & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,16 @@ def commonSettings: Seq[Setting[_]] = Seq(
)

val mimaSettings = Def settings (
mimaPreviousArtifacts := Set(organization.value %% moduleName.value % "1.0.0")
mimaPreviousArtifacts := Set(organization.value %% moduleName.value % "1.0.0"),
mimaBinaryIssueFilters ++= {
import com.typesafe.tools.mima.core._
import com.typesafe.tools.mima.core.ProblemFilters._
Seq(
exclude[DirectMissingMethodProblem]("sbt.internal.librarymanagement.ivyint.GigahorseUrlHandler#SbtUrlInfo.this"),
exclude[IncompatibleMethTypeProblem]("sbt.internal.librarymanagement.ivyint.GigahorseUrlHandler#SbtUrlInfo.this"),
exclude[DirectMissingMethodProblem]("sbt.internal.librarymanagement.ivyint.GigahorseUrlHandler.checkStatusCode")
)
}
)

lazy val lmRoot = (project in file("."))
Expand Down
Loading

0 comments on commit 4da187a

Please sign in to comment.