@@ -24,10 +24,10 @@ configurations {
2424def customDoubleParser = project. findProperty(' customDoubleParser' ) ?: ' fast-double-parser'
2525
2626dependencies {
27- compileOnly ' org .jetbrains:annotations:26.0.1 '
27+ compileOnly libs . jetbrains. annotations
2828
29- annotationProcessor ' org .immutables:value:2.10.1 '
30- compileOnly ' org .immutables: value-annotations:2.10.1 '
29+ annotationProcessor libs . immutables. value
30+ compileOnly libs . immutables. value. annotations
3131
3232 if (customDoubleParser == ' fast-double-parser' ) {
3333 // By default, use the fast double parser for tests and JMH
@@ -38,25 +38,25 @@ dependencies {
3838 throw new IllegalArgumentException (' Invalid customDoubleParser: ' + customDoubleParser)
3939 }
4040
41- testImplementation ' net.sf. trove4j:trove4j:3.0.3 '
42- testImplementation ' commons-io:commons-io:2.17.0 '
43- testCompileOnly ' org .jetbrains:annotations:26.0.1 '
44-
45- testImplementation ' org .assertj:assertj-core:3.26.3 '
46- testImplementation(platform(' org .junit:junit-bom:5.11.3 ' ))
47- testImplementation ' org .junit.jupiter:junit-jupiter '
48-
49- jmh ' com.fasterxml. jackson.dataformat:jackson-dataformat-csv:2.18.1 '
50- jmh ' com .opencsv:opencsv:5.9 '
51- jmh ' com .univocity:univocity-parsers:2.9.1 '
52- jmh ' de.siegmar: fastcsv:2.2.2 '
53- jmh ' net.sf.supercsv: super-csv:2.4.0 '
54- jmh ' org.apache. commons:commons-csv:1.12.0 '
55- jmh ' org.simpleflatmapper:sfm-csv:8.2.3 '
41+ testImplementation libs . trove4j
42+ testImplementation libs . commons. io
43+ testCompileOnly libs . jetbrains. annotations
44+
45+ testImplementation libs . assertj
46+ testImplementation(platform(libs . junit. bom ))
47+ testImplementation libs . junit. jupiter
48+
49+ jmh libs . jackson. dataformat. csv
50+ jmh libs . opencsv
51+ jmh libs . univocity. parsers
52+ jmh libs . fastcsv
53+ jmh libs . super . csv
54+ jmh libs . commons. csv
55+ jmh libs . simpleflatemapper . csv
5656}
5757
5858jmh {
59- jmhVersion = ' 1.37 '
59+ jmhVersion = libs . versions . jmh
6060 // -prof gc
6161 profilers = [' gc' ]
6262 // -rf JSON
0 commit comments