Skip to content

Commit

Permalink
Merge branch 'dev' into ck/#267-adaptColumnSchemeOfCOSMOWeatherData
Browse files Browse the repository at this point in the history
  • Loading branch information
t-ober authored Feb 4, 2022
2 parents 4dfbe0c + 9fee752 commit 2075f1f
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@ plugins {
id 'maven-publish'
id 'signing'
id 'pmd' // code check, working on source code
id 'com.diffplug.spotless' version '6.2.0'//code format
id 'com.diffplug.spotless' version '6.2.1'//code format
id 'com.github.spotbugs' version '5.0.5' // code check, working on byte code
id 'de.undercouch.download' version '4.1.2'
id 'de.undercouch.download' version '5.0.1'
id 'kr.motd.sphinx' version '2.10.1' // documentation generation
id 'jacoco' // java code coverage plugin
id "org.sonarqube" version "3.3" // sonarqube
Expand Down Expand Up @@ -91,8 +91,8 @@ dependencies {

// Databases
implementation 'org.influxdb:influxdb-java:2.22'
implementation 'com.couchbase.client:java-client:3.2.4'
runtimeOnly 'org.postgresql:postgresql:42.3.1' // postgresql jdbc driver required during runtime
implementation 'com.couchbase.client:java-client:3.2.5'
runtimeOnly 'org.postgresql:postgresql:42.3.2' // postgresql jdbc driver required during runtime

implementation 'commons-io:commons-io:2.11.0' // I/O functionalities
implementation 'org.apache.commons:commons-compress:1.21' // I/O functionalities
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ public void setEdgeWeightQuantity(
* ComparableQuantity)} instead, as it provides means for proper unit handling
*/
@Override
@Deprecated(since = ("Deprecated since 2.1.0. See Javadocs for more information."))
@Deprecated(since = "Deprecated since 2.1.0. See Javadocs for more information.")
public void setEdgeWeight(ImpedanceWeightedEdge edge, double impedanceInOhm) {
super.setEdgeWeight(edge, impedanceInOhm);
}
Expand Down

0 comments on commit 2075f1f

Please sign in to comment.