Skip to content

Commit ffee381

Browse files
committed
Add javax activation
1 parent f002b9c commit ffee381

File tree

3 files changed

+14
-11
lines changed

3 files changed

+14
-11
lines changed

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
# Codacy Coverage Reporter
22

3-
Multi-language coverage reporter for Codacy https://www.codacy.com
4-
53
[![Codacy Badge](https://api.codacy.com/project/badge/grade/1c524e61cd8640e79b80d406eda8754b)](https://www.codacy.com/app/Codacy/codacy-coverage-reporter)
64
[![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)
75
[![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)
86

7+
Multi-language coverage reporter for Codacy https://www.codacy.com
8+
99
## Requirements
1010

1111
* Java JRE 8 and higher

build.sbt

+2-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,8 @@ libraryDependencies ++= Seq(
2727
caseApp,
2828
raptureJsonPlay,
2929
scalaTest,
30-
cats
30+
cats,
31+
javaxActivation
3132
)
3233

3334
mainClass in assembly := Some("com.codacy.CodacyCoverageReporter")

project/Dependencies.scala

+10-8
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,17 @@ import sbt._
22

33
object Dependencies {
44

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

10-
lazy val scalaTest = "org.scalatest" %% "scalatest" % "3.0.5" % "test"
11+
val scalaTest = "org.scalatest" %% "scalatest" % "3.0.5" % "test"
1112

12-
lazy val cats = "org.typelevel" %% "cats-core" % "1.0.1"
13+
val cats = "org.typelevel" %% "cats-core" % "1.0.1"
14+
15+
val logback = "ch.qos.logback" % "logback-classic" % "1.2.3"
16+
val log4s = "org.log4s" %% "log4s" % "1.5.0"
1317

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

0 commit comments

Comments
 (0)