Skip to content

Commit b25de5f

Browse files
committed
Force FastCSV < 3.0.0
1 parent 24dffd8 commit b25de5f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

scripts/buildscript.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ dependencies {
4040
classpath 'org.apache.maven:maven-artifact:3.9.1'
4141
classpath 'com.google.code.findbugs:jsr305:3.0.2'
4242

43-
// ForgeGradle apparently does not know about version ranges and does not update their dependencies
44-
// Force a more recent version here
45-
classpath('de.siegmar:fastcsv') { version { strictly '[2.2.2,)' } }
43+
// FastCSV broke binary compatibility in 3.0.0.
44+
// Force the latest 2.x.x version here. This will at least work until some library starts using FastCSV 3.
45+
classpath('de.siegmar:fastcsv') { version { strictly '[2.2.2,3.0.0)' } }
4646
}

0 commit comments

Comments
 (0)