Skip to content
This repository has been archived by the owner on Feb 19, 2020. It is now read-only.

Commit

Permalink
Merge pull request #54 from codacy/add-javax-activation
Browse files Browse the repository at this point in the history
Add javax activation as dependency trying to fix java 10
  • Loading branch information
xplosunn committed Jul 20, 2018
2 parents d7dc77a + 6ca0e45 commit 8f0272d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,8 @@ resolvers ++= Seq(
libraryDependencies ++= Seq(
codacyScalaApi,
coverageParser,
`rapture-json-circe`
raptureJsonCirce,
javaxActivation
)

organization := "com.codacy"
Expand Down
3 changes: 2 additions & 1 deletion project/Dependencies.scala
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ object Dependencies {

val codacyScalaApi = "com.codacy" %% "codacy-api-scala" % "3.0.7"
val coverageParser = "com.codacy" %% "coverage-parser" % "2.0.7"
val `rapture-json-circe` = "com.propensive" %% "rapture-json-circe" % "2.0.0-M8" exclude("org.spire-math", "jawn-parser_2.11")
val raptureJsonCirce = "com.propensive" %% "rapture-json-circe" % "2.0.0-M8" exclude("org.spire-math", "jawn-parser_2.11")
val javaxActivation = "com.sun.activation" % "javax.activation" % "1.2.0"

}

0 comments on commit 8f0272d

Please sign in to comment.