Skip to content

Commit 363152b

Browse files
authored
fix: Fix build and update dependencies (#542)
1 parent 7cda977 commit 363152b

4 files changed

Lines changed: 12 additions & 10 deletions

File tree

.circleci/config.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
version: 2.1
22

33
orbs:
4-
codacy: codacy/base@12.1.2
4+
codacy: codacy/base@13.0.1
55

66
references:
77
circleci_job: &circleci_job
88
docker:
9-
- image: circleci/circleci-cli:0.1.29041
9+
- image: circleci/circleci-cli:0.1.34422
1010
working_directory: ~/workdir
1111

1212
commands:
@@ -438,6 +438,7 @@ workflows:
438438
- run:
439439
name: Clean coverage.sbt from cache
440440
command: rm coverage.sbt
441+
openjdk_version: '11'
441442
requires:
442443
- codacy/checkout_and_version
443444
- codacy/sbt:
@@ -451,6 +452,7 @@ workflows:
451452
mv target/codacy-coverage-reporter-assembly-$(cat .version).jar ~/workdir/tmp-artifacts/codacy-coverage-reporter-assembly.jar
452453
persist_to_workspace: true
453454
save_cache: true
455+
openjdk_version: '11'
454456
requires:
455457
- compile_and_test
456458
- codacy/sbt_osx:

build.sbt

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
inThisBuild(Seq(scalaVersion := "3.3.3"))
1+
inThisBuild(Seq(scalaVersion := "3.3.7"))
22

33
def commonSettings =
44
Seq(scalacOptions := {
@@ -76,7 +76,7 @@ dependsOn(coverageParser)
7676

7777
commonSettings
7878

79-
val scalatest = "org.scalatest" %% "scalatest" % "3.2.18"
79+
val scalatest = "org.scalatest" %% "scalatest" % "3.2.19"
8080

8181
lazy val apiScala = project
8282
.in(file("api-scala"))
@@ -95,8 +95,8 @@ lazy val coverageParser = project
9595
.settings(
9696
commonSettings,
9797
libraryDependencies ++= Seq(
98-
"com.codacy" %% "codacy-plugins-api" % "8.1.4",
99-
"org.scala-lang.modules" %% "scala-xml" % "2.3.0",
98+
"com.codacy" %% "codacy-plugins-api" % "12.0.0",
99+
"org.scala-lang.modules" %% "scala-xml" % "2.4.0",
100100
scalatest % Test
101101
)
102102
)

project/build.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
sbt.version=1.9.7
1+
sbt.version=1.12.4

project/plugins.sbt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
addSbtPlugin("org.scalameta" % "sbt-native-image" % "0.3.4")
2-
addSbtPlugin("com.codacy" % "codacy-sbt-plugin" % "25.1.1")
2+
addSbtPlugin("com.codacy" % "codacy-sbt-plugin" % "25.4.0")
33

44
// Publish
5-
addSbtPlugin("com.eed3si9n" % "sbt-assembly" % "2.1.4")
5+
addSbtPlugin("com.eed3si9n" % "sbt-assembly" % "2.3.1")
66

77
// Coverage
8-
addSbtPlugin("org.scoverage" % "sbt-scoverage" % "2.0.11")
8+
addSbtPlugin("org.scoverage" % "sbt-scoverage" % "2.4.4")
99

1010
libraryDependencySchemes ++= Seq("org.scala-lang.modules" %% "scala-xml" % VersionScheme.Always)

0 commit comments

Comments
 (0)