Skip to content

Commit 0342ae2

Browse files
Merge branch 'dev' into 1343-add-ground-temperature-1m-as-option-to-weather-data
2 parents 6bb6984 + 1425d19 commit 0342ae2

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ jobs:
7979
./gradlew sonar \
8080
-Dsonar.projectKey=${{ vars.SONAR_PROJECT_KEY }} \
8181
-Dsonar.host.url=${{ vars.SONAR_HOST_URL }} \
82-
-Dsonar.login=${{ secrets.SONAR_TOKEN }} \
82+
-Dsonar.token="${{ secrets.SONAR_TOKEN }}" \
8383
-Dsonar.qualitygate.wait=true
8484
8585
#Deployment

build.gradle

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ ext {
2121
groovyBinaryVersion = "4.0.27"
2222

2323
junitVersion = '1.12.0'
24-
testcontainersVersion = '1.21.1'
24+
testcontainersVersion = '1.21.2'
2525

2626
scriptsLocation = 'gradle' + File.separator + 'scripts' + File.separator //location of script plugins
2727
}
@@ -81,7 +81,7 @@ dependencies {
8181
testImplementation "org.junit.jupiter:junit-jupiter:$junitVersion"
8282
testImplementation "org.spockframework:spock-core:2.3-groovy-$groovyVersion"
8383
testImplementation 'org.objenesis:objenesis:3.4' // Mock creation with constructor parameters
84-
testImplementation 'net.bytebuddy:byte-buddy:1.17.5' // Mocks of classes
84+
testImplementation 'net.bytebuddy:byte-buddy:1.17.6' // Mocks of classes
8585

8686
// testcontainers (docker framework for testing)
8787
testImplementation "org.testcontainers:testcontainers:$testcontainersVersion"
@@ -91,15 +91,15 @@ dependencies {
9191
testImplementation "org.testcontainers:couchbase:$testcontainersVersion"
9292

9393
// logging
94-
implementation platform('org.apache.logging.log4j:log4j-bom:2.24.3')
94+
implementation platform('org.apache.logging.log4j:log4j-bom:2.25.0')
9595
implementation 'org.apache.logging.log4j:log4j-api' // log4j
9696
implementation 'org.apache.logging.log4j:log4j-core' // log4j
9797
implementation 'org.apache.logging.log4j:log4j-slf4j-impl' // log4j -> slf4j
9898

9999
// Databases
100100
implementation 'org.influxdb:influxdb-java:2.25'
101101
implementation 'com.couchbase.client:java-client:3.8.2'
102-
runtimeOnly 'org.postgresql:postgresql:42.7.6' // postgresql jdbc driver required during runtime
102+
runtimeOnly 'org.postgresql:postgresql:42.7.7' // postgresql jdbc driver required during runtime
103103

104104
implementation 'commons-io:commons-io:2.19.0' // I/O functionalities
105105
implementation 'commons-codec:commons-codec:1.18.0' // needed by commons-compress

0 commit comments

Comments
 (0)