Skip to content

Commit 9ab1239

Browse files
authored
Merge branch 'dev' into ck/#91-regionGenerator
2 parents 1ac4d0f + 94afd57 commit 9ab1239

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

build.gradle

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,11 @@ plugins {
33
id 'java' //java support
44
id 'groovy' // groovy support
55
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
88
id 'de.undercouch.download' version '4.1.2'
99
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
1111
id 'jacoco' // java code coverage plugin
1212
id "org.sonarqube" version "3.3" // sonarqube
1313
id 'net.thauvin.erik.gradle.semver' version '1.0.4' // semantic versioning
@@ -19,7 +19,7 @@ ext {
1919

2020
scalaMajorVersion = '3'
2121
scalaVersion = '3.1.0'
22-
akkaVersion = '2.6.17'
22+
akkaVersion = '2.6.18'
2323

2424
tscfgVersion = '0.9.995'
2525

@@ -64,7 +64,7 @@ dependencies {
6464

6565
// logging
6666
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'
6868

6969
// testing
7070
testImplementation "org.scalatest:scalatest_$scalaMajorVersion:3.2.10"
@@ -116,7 +116,7 @@ dependencies {
116116
// testing
117117
testImplementation 'junit:junit:4.13.2'
118118
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
120120
testImplementation 'org.spockframework:spock-core:2.0-groovy-3.0'
121121
testImplementation 'org.objenesis:objenesis:3.2' // Mock creation with constructor parameters
122122
}

0 commit comments

Comments
 (0)