Skip to content

Commit b9393b8

Browse files
Merge branch 'dev' into df/#891_gradle8x
# Conflicts: # build.gradle
2 parents afb7632 + c513d8e commit b9393b8

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

build.gradle

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,12 @@ plugins {
44
id 'maven-publish'
55
id 'signing'
66
id 'pmd' // code check, working on source code
7-
id 'com.diffplug.spotless' version '6.21.0' //code format
7+
id 'com.diffplug.spotless' version '6.22.0' //code format
88
id 'com.github.spotbugs' version '5.1.3' // code check, working on byte code
99
id 'de.undercouch.download' version '5.5.0'
1010
id 'kr.motd.sphinx' version '2.10.1' // documentation generation
1111
id 'jacoco' // java code coverage plugin
12-
id "org.sonarqube" version "4.4.0.3356" // sonarqube
12+
id "org.sonarqube" version "4.4.1.3373" // sonarqube
1313
id 'net.thauvin.erik.gradle.semver' version '1.0.4' // semantic versioning
1414
}
1515

@@ -18,7 +18,7 @@ ext {
1818
javaVersion = JavaVersion.VERSION_17
1919
groovyVersion = "4.0"
2020
groovyBinaryVersion = "4.0.15"
21-
testcontainersVersion = '1.19.0'
21+
testcontainersVersion = '1.19.1'
2222

2323
scriptsLocation = 'gradle' + File.separator + 'scripts' + File.separator //location of script plugins
2424
}
@@ -70,7 +70,7 @@ dependencies {
7070
testImplementation 'org.junit.jupiter:junit-jupiter:5.10.0'
7171
testImplementation "org.spockframework:spock-core:2.3-groovy-$groovyVersion"
7272
testImplementation 'org.objenesis:objenesis:3.3' // Mock creation with constructor parameters
73-
testImplementation 'net.bytebuddy:byte-buddy:1.14.7' // Mocks of classes
73+
testImplementation 'net.bytebuddy:byte-buddy:1.14.9' // Mocks of classes
7474

7575
// testcontainers (docker framework for testing)
7676
testImplementation "org.testcontainers:testcontainers:$testcontainersVersion"
@@ -87,7 +87,7 @@ dependencies {
8787

8888
// Databases
8989
implementation 'org.influxdb:influxdb-java:2.23'
90-
implementation 'com.couchbase.client:java-client:3.4.10'
90+
implementation 'com.couchbase.client:java-client:3.4.11'
9191
runtimeOnly 'org.postgresql:postgresql:42.6.0' // postgresql jdbc driver required during runtime
9292

9393
implementation 'commons-io:commons-io:2.14.0' // I/O functionalities

docs/readthedocs/requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
commonmark==0.9.1
22
recommonmark==0.7.1
3-
Sphinx==7.2.5
3+
Sphinx==7.2.6
44
sphinx-rtd-theme==1.3.0
55
myst-parser==2.0.0
66
markdown-it-py==3.0.0

0 commit comments

Comments
 (0)