Skip to content

Commit 3f30f7b

Browse files
committed
MINOR: build dependecies - version updates
details: - `grgit`: 4.1.1 -->> 5.3.2 - `scala-logging`: 3.9.5 -->> 3.9.6 - `scalafmt`: 3.7.14 -->> 3.9.10 - `org.owasp.dependencycheck` gradle plugin: 12.1.3 -->> 12.1.6 - `com.diffplug.spotless` gradle plugin: 7.2.1 -->> 8.0.0 - Scala coverage: - scoverage: 2.0.11 -->> 2.3.0 - Scala version for scoverage: 2.13.9 -->> 2.13.16 (i.e. `org.scoverage:scalac-scoverage-plugin_2.13.16:2.3.0` will be used) - `org.scoverage` gradle plugin: 8.0.3 -->> 8.1 ...
1 parent ede6c90 commit 3f30f7b

File tree

4 files changed

+10
-10
lines changed

4 files changed

+10
-10
lines changed

LICENSE-binary

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -249,7 +249,7 @@ License Version 2.0:
249249
- plexus-utils-3.5.1
250250
- rocksdbjni-10.1.3
251251
- scala-library-2.13.17
252-
- scala-logging_2.13-3.9.5
252+
- scala-logging_2.13-3.9.6
253253
- scala-reflect-2.13.17
254254
- snappy-java-1.1.10.7
255255
- snakeyaml-2.4

build.gradle

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -33,14 +33,14 @@ plugins {
3333
id 'idea'
3434
id 'jacoco'
3535
id 'java-library'
36-
id 'org.owasp.dependencycheck' version '12.1.3'
36+
id 'org.owasp.dependencycheck' version '12.1.6'
3737
id 'org.nosphere.apache.rat' version "0.8.1"
3838
id "io.swagger.core.v3.swagger-gradle-plugin" version "${swaggerVersion}"
3939

4040
id "com.github.spotbugs" version '6.2.5' apply false
41-
id 'org.scoverage' version '8.0.3' apply false
41+
id 'org.scoverage' version '8.1' apply false
4242
id 'com.gradleup.shadow' version '8.3.9' apply false
43-
id 'com.diffplug.spotless' version "7.2.1"
43+
id 'com.diffplug.spotless' version "8.0.0"
4444
}
4545

4646
ext {
@@ -1119,7 +1119,7 @@ project(':core') {
11191119
scoverage {
11201120
scoverageVersion = versions.scoverage
11211121
if (versions.baseScala == '2.13') {
1122-
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
1122+
scoverageScalaVersion = '2.13.16' // `org.scoverage:scalac-scoverage-plugin_2.13.16:2.3.0` is the latest as of now
11231123
}
11241124
reportDir = file("${layout.buildDirectory.get().asFile.path}/scoverage")
11251125
highlighting = false

checkstyle/.scalafmt.conf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1313
# See the License for the specific language governing permissions and
1414
# limitations under the License.
15-
version = 3.7.14
15+
version = 3.9.10
1616
runner.dialect = scala213
1717
docstrings.style = Asterisk
1818
docstrings.wrap = false

gradle/dependencies.gradle

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ versions += [
6161
commonsValidator: "1.10.0",
6262
classgraph: "4.8.179",
6363
gradle: "9.1.0",
64-
grgit: "4.1.1",
64+
grgit: "5.3.2",
6565
httpclient: "4.5.14",
6666
jackson: "2.19.0",
6767
jacoco: "0.8.13",
@@ -71,7 +71,7 @@ versions += [
7171
jline: "3.30.4",
7272
jmh: "1.37",
7373
hamcrest: "3.0",
74-
scalaLogging: "3.9.5",
74+
scalaLogging: "3.9.6",
7575
jaxAnnotation: "1.3.2",
7676
jaxb: "2.3.1",
7777
jakartaRs: "3.1.0",
@@ -119,8 +119,8 @@ versions += [
119119
// When updating the scalafmt version please also update the version field in checkstyle/.scalafmt.conf. scalafmt now
120120
// has the version field as mandatory in its configuration, see
121121
// https://github.com/scalameta/scalafmt/releases/tag/v3.1.0.
122-
scalafmt: "3.7.14",
123-
scoverage: "2.0.11",
122+
scalafmt: "3.9.10",
123+
scoverage: "2.3.0",
124124
slf4j: "1.7.36",
125125
snappy: "1.1.10.7",
126126
spotbugs: "4.9.4",

0 commit comments

Comments
 (0)