Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 5 additions & 7 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
version: 2.1

orbs:
codacy: codacy/base@11.2.0
codacy_plugins_test: codacy/plugins-test@1.1.1
codacy: codacy/base@12.1.4
codacy_plugins_test: codacy/plugins-test@2.0.11

jobs:
test:
Expand All @@ -24,11 +24,9 @@ workflows:
- codacy/sbt:
name: publish_docker_local
cmd: |
sbt "scalafmt::test;
test:scalafmt::test;
sbt:scalafmt::test;
Test / compile;
stage"
sbt "test:scalafmt::test;
Test / compile;
stage"
docker build -t $CIRCLE_PROJECT_REPONAME:latest .
docker save --output docker-image.tar $CIRCLE_PROJECT_REPONAME:latest
persist_to_workspace: true
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM amazoncorretto:8-alpine3.17-jre
FROM amazoncorretto:8-alpine3.20-jre
RUN apk add bash
WORKDIR /opt/docker
COPY docs /docs
Expand Down
2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
ThisBuild / scalaVersion := "2.13.12"
ThisBuild / scalaVersion := "2.13.14"

lazy val codacyDuplictionPmdCpd = project
.in(file("."))
Expand Down
8 changes: 4 additions & 4 deletions project/Dependencies.scala
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,14 @@ import sbt._
object Dependencies {

object Codacy {
val duplicationSeed = "com.codacy" %% "codacy-duplication-scala-seed" % "2.0.1"
val duplicationSeed = "com.codacy" %% "codacy-duplication-scala-seed" % "2.1.1"
}

val playJson = "com.typesafe.play" %% "play-json" % "2.7.4"
val playJson = "org.playframework" %% "play-json" % "3.0.4"

val scalaMeta = "org.scalameta" %% "scalameta" % "4.4.28"
val scalaMeta = "org.scalameta" %% "scalameta" % "4.12.0"

private val pmdVersion = "6.44.0"
private val pmdVersion = "7.7.0"

val pmdLanguages = Seq(
"scala",
Expand Down
2 changes: 1 addition & 1 deletion project/build.properties
Original file line number Diff line number Diff line change
@@ -1 +1 @@
sbt.version = 1.9.7
sbt.version = 1.10.5
2 changes: 1 addition & 1 deletion project/plugins.sbt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
addSbtPlugin("com.codacy" % "codacy-sbt-plugin" % "20.0.2")
addSbtPlugin("com.codacy" % "codacy-sbt-plugin" % "25.2.1")