Skip to content

Commit

Permalink
Add javax activation
Browse files Browse the repository at this point in the history
  • Loading branch information
rtfpessoa committed Jul 23, 2018
1 parent f002b9c commit ffee381
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 11 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
# Codacy Coverage Reporter

Multi-language coverage reporter for Codacy https://www.codacy.com

[![Codacy Badge](https://api.codacy.com/project/badge/grade/1c524e61cd8640e79b80d406eda8754b)](https://www.codacy.com/app/Codacy/codacy-coverage-reporter)
[![Build Status](https://circleci.com/gh/codacy/codacy-coverage-reporter.png?style=shield&circle-token=:circle-token)](https://circleci.com/gh/codacy/codacy-coverage-reporter)
[![Maven Central](https://maven-badges.herokuapp.com/maven-central/com.codacy/codacy-coverage-reporter/badge.svg)](https://maven-badges.herokuapp.com/maven-central/com.codacy/codacy-coverage-reporter)

Multi-language coverage reporter for Codacy https://www.codacy.com

## Requirements

* Java JRE 8 and higher
Expand Down
3 changes: 2 additions & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,8 @@ libraryDependencies ++= Seq(
caseApp,
raptureJsonPlay,
scalaTest,
cats
cats,
javaxActivation
)

mainClass in assembly := Some("com.codacy.CodacyCoverageReporter")
Expand Down
18 changes: 10 additions & 8 deletions project/Dependencies.scala
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,17 @@ import sbt._

object Dependencies {

lazy val codacyScalaApi = "com.codacy" %% "codacy-api-scala" % "3.0.7"
lazy val coverageParser = "com.codacy" %% "coverage-parser" % "2.0.9"
lazy val caseApp = "com.github.alexarchambault" %% "case-app" % "1.2.0"
lazy val raptureJsonPlay = "com.propensive" %% "rapture-json-play" % "2.0.0-M8"
val codacyScalaApi = "com.codacy" %% "codacy-api-scala" % "3.0.7"
val coverageParser = "com.codacy" %% "coverage-parser" % "2.0.9"
val caseApp = "com.github.alexarchambault" %% "case-app" % "1.2.0"
val raptureJsonPlay = "com.propensive" %% "rapture-json-play" % "2.0.0-M8"
val javaxActivation = "com.sun.activation" % "javax.activation" % "1.2.0"

lazy val scalaTest = "org.scalatest" %% "scalatest" % "3.0.5" % "test"
val scalaTest = "org.scalatest" %% "scalatest" % "3.0.5" % "test"

lazy val cats = "org.typelevel" %% "cats-core" % "1.0.1"
val cats = "org.typelevel" %% "cats-core" % "1.0.1"

val logback = "ch.qos.logback" % "logback-classic" % "1.2.3"
val log4s = "org.log4s" %% "log4s" % "1.5.0"

lazy val logback = "ch.qos.logback" % "logback-classic" % "1.2.3"
lazy val log4s = "org.log4s" %% "log4s" % "1.5.0"
}

0 comments on commit ffee381

Please sign in to comment.