@@ -3,11 +3,11 @@ plugins {
3
3
id ' java' // java support
4
4
id ' groovy' // groovy support
5
5
id ' pmd' // code check, working on source code
6
- id ' com.diffplug.spotless' version ' 6.0.4 ' // code format
7
- id ' com.github.spotbugs' version ' 5.0.2 ' // code check, working on byte code
6
+ id ' com.diffplug.spotless' version ' 6.1.0 ' // code format
7
+ id ' com.github.spotbugs' version ' 5.0.3 ' // code check, working on byte code
8
8
id ' de.undercouch.download' version ' 4.1.2'
9
9
id ' kr.motd.sphinx' version ' 2.10.1' // documentation generation
10
- id " com.github.maiflai.scalatest" version " 0.31 " // run scalatest without specific spec task
10
+ id " com.github.maiflai.scalatest" version " 0.32 " // run scalatest without specific spec task
11
11
id ' jacoco' // java code coverage plugin
12
12
id " org.sonarqube" version " 3.3" // sonarqube
13
13
id ' net.thauvin.erik.gradle.semver' version ' 1.0.4' // semantic versioning
19
19
20
20
scalaMajorVersion = ' 3'
21
21
scalaVersion = ' 3.1.0'
22
- akkaVersion = ' 2.6.17 '
22
+ akkaVersion = ' 2.6.18 '
23
23
24
24
tscfgVersion = ' 0.9.995'
25
25
@@ -64,7 +64,7 @@ dependencies {
64
64
65
65
// logging
66
66
implementation " com.typesafe.scala-logging:scala-logging_${ scalaMajorVersion} :3.9.4"
67
- implementation ' ch.qos.logback:logback-classic:1.2.7 '
67
+ implementation ' ch.qos.logback:logback-classic:1.2.10 '
68
68
69
69
// testing
70
70
testImplementation " org.scalatest:scalatest_$scalaMajorVersion :3.2.10"
@@ -116,7 +116,7 @@ dependencies {
116
116
// testing
117
117
testImplementation ' junit:junit:4.13.2'
118
118
testImplementation ' cglib:cglib-nodep:3.3.0' // enables mocking of classes (in addition to interfaces)
119
- testImplementation ' org.mockito:mockito-core:4.1 .0' // mocking framework
119
+ testImplementation ' org.mockito:mockito-core:4.2 .0' // mocking framework
120
120
testImplementation ' org.spockframework:spock-core:2.0-groovy-3.0'
121
121
testImplementation ' org.objenesis:objenesis:3.2' // Mock creation with constructor parameters
122
122
}
0 commit comments