We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 24dffd8 commit b25de5fCopy full SHA for b25de5f
scripts/buildscript.gradle
@@ -40,7 +40,7 @@ dependencies {
40
classpath 'org.apache.maven:maven-artifact:3.9.1'
41
classpath 'com.google.code.findbugs:jsr305:3.0.2'
42
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,)' } }
+ // FastCSV broke binary compatibility in 3.0.0.
+ // Force the latest 2.x.x version here. This will at least work until some library starts using FastCSV 3.
+ classpath('de.siegmar:fastcsv') { version { strictly '[2.2.2,3.0.0)' } }
46
}
0 commit comments