File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
src/main/java/edu/ie3/datamodel/io/source/csv Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ plugins {
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.3.1.3277 " // sonarqube
12+ id " org.sonarqube" version " 4.4.0.3356 " // sonarqube
1313 id ' net.thauvin.erik.gradle.semver' version ' 1.0.4' // semantic versioning
1414}
1515
@@ -90,7 +90,7 @@ dependencies {
9090 implementation ' com.couchbase.client:java-client:3.4.10'
9191 runtimeOnly ' org.postgresql:postgresql:42.6.0' // postgresql jdbc driver required during runtime
9292
93- implementation ' commons-io:commons-io:2.13 .0' // I/O functionalities
93+ implementation ' commons-io:commons-io:2.14 .0' // I/O functionalities
9494 implementation ' org.apache.commons:commons-compress:1.24.0' // I/O functionalities
9595 implementation ' org.apache.commons:commons-lang3:3.13.0'
9696}
Original file line number Diff line number Diff line change @@ -53,7 +53,7 @@ public class CsvDataSource implements DataSource {
5353 @ Deprecated (since = "1.1.0" , forRemoval = true )
5454 private boolean notYetLoggedWarning = true ;
5555
56- protected CsvDataSource (String csvSep , Path folderPath , FileNamingStrategy fileNamingStrategy ) {
56+ public CsvDataSource (String csvSep , Path folderPath , FileNamingStrategy fileNamingStrategy ) {
5757 this .csvSep = csvSep ;
5858 this .connector = new CsvFileConnector (folderPath , fileNamingStrategy );
5959 }
You can’t perform that action at this time.
0 commit comments