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
2 changes: 1 addition & 1 deletion LICENSE-binary
Original file line number Diff line number Diff line change
Expand Up @@ -249,7 +249,7 @@ License Version 2.0:
- plexus-utils-3.5.1
- rocksdbjni-10.1.3
- scala-library-2.13.17
- scala-logging_2.13-3.9.5
- scala-logging_2.13-3.9.6
- scala-reflect-2.13.17
- snappy-java-1.1.10.7
- snakeyaml-2.4
Expand Down
10 changes: 4 additions & 6 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -33,14 +33,14 @@ plugins {
id 'idea'
id 'jacoco'
id 'java-library'
id 'org.owasp.dependencycheck' version '12.1.3'
id 'org.owasp.dependencycheck' version '12.1.7'
id 'org.nosphere.apache.rat' version "0.8.1"
id "io.swagger.core.v3.swagger-gradle-plugin" version "${swaggerVersion}"

id "com.github.spotbugs" version '6.2.5' apply false
id 'org.scoverage' version '8.0.3' apply false
id 'org.scoverage' version '8.1' apply false
id 'com.gradleup.shadow' version '8.3.9' apply false
id 'com.diffplug.spotless' version "7.2.1"
id 'com.diffplug.spotless' version "8.0.0"
}

ext {
Expand Down Expand Up @@ -1124,9 +1124,7 @@ project(':core') {
if (userEnableTestCoverage) {
scoverage {
scoverageVersion = versions.scoverage
if (versions.baseScala == '2.13') {
scoverageScalaVersion = '2.13.9' // there's no newer 2.13 artifact, org.scoverage:scalac-scoverage-plugin_2.13.9:2.0.11 is the latest as of now
}
scoverageScalaVersion = '2.13.16' // `org.scoverage:scalac-scoverage-plugin_2.13.16:2.3.0` is the latest as of now
reportDir = file("${layout.buildDirectory.get().asFile.path}/scoverage")
highlighting = false
minimumRate = 0.0
Expand Down
2 changes: 1 addition & 1 deletion checkstyle/.scalafmt.conf
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
version = 3.7.14
version = 3.9.10
runner.dialect = scala213
docstrings.style = Asterisk
docstrings.wrap = false
Expand Down
8 changes: 4 additions & 4 deletions gradle/dependencies.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ versions += [
commonsValidator: "1.10.0",
classgraph: "4.8.179",
gradle: "9.1.0",
grgit: "4.1.1",
grgit: "5.3.3",
httpclient: "4.5.14",
jackson: "2.19.0",
jacoco: "0.8.13",
Expand All @@ -71,7 +71,7 @@ versions += [
jline: "3.30.4",
jmh: "1.37",
hamcrest: "3.0",
scalaLogging: "3.9.5",
scalaLogging: "3.9.6",
jaxAnnotation: "1.3.2",
jaxb: "2.3.1",
jakartaRs: "3.1.0",
Expand Down Expand Up @@ -119,8 +119,8 @@ versions += [
// When updating the scalafmt version please also update the version field in checkstyle/.scalafmt.conf. scalafmt now
// has the version field as mandatory in its configuration, see
// https://github.com/scalameta/scalafmt/releases/tag/v3.1.0.
scalafmt: "3.7.14",
scoverage: "2.0.11",
scalafmt: "3.9.10",
scoverage: "2.3.0",
slf4j: "1.7.36",
snappy: "1.1.10.7",
spotbugs: "4.9.4",
Expand Down
Loading